Commit Graph

184 Commits

Author SHA1 Message Date
Emil Lauridsen 0cdbd08149 Keep VSCode config mostly backwards compatible 2019-12-25 20:26:06 +01:00
Emil Lauridsen b9c10ed97f Re-format VSCode extension changes 2019-12-25 19:10:30 +01:00
Emil Lauridsen 178c23f505 Re-implement status display using LSP 3.15 progress event 2019-12-25 19:08:44 +01:00
Emil Lauridsen 500fe46e6c Remove cargo watch supporting code and tests from vscode extension 2019-12-25 17:37:40 +01:00
Emil Lauridsen 6af4bf7a8d Configuration plumbing for cargo watcher 2019-12-25 17:37:40 +01:00
Emil Lauridsen 41a1ec723c Remove cargo-watch from vscode extension.
Still keeps tests around for reference when porting them to rust
2019-12-25 17:37:40 +01:00
kjeremy 6049f60a05 Protect against null as revealed by npm test 2019-12-20 13:52:34 -05:00
Edwin Cheng bb9c60d908 Use substr instead of endswith 2019-12-18 10:50:54 +08:00
Edwin Cheng 63c59308e6 Add tests 2019-12-18 10:47:45 +08:00
Edwin Cheng d2c1f8ee26 Add macro span handling 2019-12-18 10:47:45 +08:00
bors[bot] f51a3fed9f Merge #2580
2580: Fix highlighting token names r=matklad a=matklad



Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2019-12-17 13:46:12 +00:00
Aleksey Kladov 1c8467e20a Fix highlighting token names 2019-12-17 14:45:46 +01:00
bors[bot] a26840d603 Merge #2568
2568: Add option to disable all-targets. r=matklad a=pftbest

Can be useful in embedded.

Co-authored-by: Vadzim Dambrouski <vadzim.dambrouski@promwad.com>
2019-12-17 13:28:37 +00:00
Aleksey Kladov 2432f278cb Default to client watching on VS Code 2019-12-17 12:41:44 +01:00
Vadzim Dambrouski 22ae4cb906 Fix formatting 2019-12-16 09:01:38 +05:30
Vadzim Dambrouski a85cd6455a Add option to disable all-targets.
Can be useful in embedded.
2019-12-15 23:32:13 +05:30
Omer Ben-Amram 75353753cd npm run fix 2019-12-15 17:10:39 +02:00
Omer Ben-Amram 498a7912e9 fixed comment 2019-12-15 16:55:39 +02:00
Omer Ben-Amram 324cbe839f Lowercase drive letters on windows before sending to extension. 2019-12-15 16:51:57 +02:00
Omer Ben-Amram 1d9b585c62 make drive comparison case-insensitive. 2019-12-15 15:07:33 +02:00
Omer Ben-Amram 5e4e713fc9 Merge branch 'refs/heads/master' into feature/granular-scopes 2019-12-14 17:29:30 +02:00
Omer Ben-Amram 083010f633 removed type.alias 2019-12-14 13:29:42 +02:00
Omer Ben-Amram 67641d3f5f added decorations 2019-12-14 13:24:07 +02:00
oxalica f56a2a0790 Enable allFeatures by default and fix lints 2019-12-14 00:48:47 +08:00
oxalica af4eb26645 Support setting cargo features 2019-12-13 18:16:34 +08:00
Tetsuharu OHZEKI 0e9cabab3f Enable noImplicitReturns option for vscode extension 2019-12-12 01:11:53 +09:00
Tetsuharu OHZEKI b21bb44c8d Enable noUnusedParameters option for vscode extension 2019-12-12 00:56:29 +09:00
Laurențiu Nicola 273299693b Code: enable prettier trailing commas 2019-12-09 21:07:19 +02:00
Aleksey Kladov 7ac4ea7fec Allow disabling sysroot
Might be helpful for debugging
2019-12-09 19:46:35 +01:00
bors[bot] e3a9e806ba Merge #2508
2508: Code: don't check for ra_lsp_server on Windows r=matklad a=lnicola

Workaround for https://github.com/rust-analyzer/rust-analyzer/pull/2503#issuecomment-562980020.

~~(not yet tested on Windows)~~

We can't run `ra_lsp_server --version` right now because the server doesn't seem to handle arguments (so it hangs).

Co-authored-by: Laurențiu Nicola <lnicola@dend.ro>
2019-12-08 19:32:24 +00:00
Laurențiu Nicola ee2bc73d2a Code: don't check for ra_lsp_server on Windows 2019-12-08 21:14:18 +02:00
Laurențiu Nicola c7dc067104 Code: bump deps 2019-12-08 20:39:22 +02:00
Laurențiu Nicola 78e8934976 Code: check whether the LSP binary is in PATH 2019-12-08 15:04:37 +02:00
Aleksey Kladov 757e593b25 rename ra_ide_api -> ra_ide 2019-11-27 21:35:06 +03:00
Aleksey Kladov eec68e6f45 Merge pull request #2297 from kiljacken/master
Add fancy truncation of type hints.
2019-11-20 08:38:25 +03:00
Edwin Cheng 1d56b80250 Minor fix for outpu text formating 2019-11-20 01:22:28 +08:00
Edwin Cheng d16cc223e1 Use DocumentProvider instead of Hover 2019-11-20 01:06:10 +08:00
Emil Lauridsen dadad36bb9 Move type inlay hint truncation to language server
This commit implements a general truncation framework for HirFormatter
that keeps track of how much has been output so far. This information
can then be used to perform truncation inside the language server,
instead of relying on the client.

Initial support is implemented for truncating types hints using the
maxInlayHintLength server config option. The existing solution in the
VSCode extension has been removed in favor of letting the server
truncate type hints.
2019-11-19 17:23:50 +01:00
Edwin Cheng 4012da07fd Change return type of expand_macro 2019-11-19 22:56:48 +08:00
Edwin Cheng 8010b42b21 Fix npm formatting 2019-11-19 21:49:06 +08:00
Edwin Cheng 3ccd05fedc Add recursive expand in vscode 2019-11-19 21:49:06 +08:00
oxalica b4fae56a25 Fix format 2019-11-16 18:52:47 +08:00
oxalica 4c175fbe8a Check exit code of cargo watch 2019-11-16 03:44:38 +08:00
oxalica 503920532d Handle errors when cargo watch fails 2019-11-16 02:49:44 +08:00
krk 9bbb27604d Add link to the vscode VIM extension compatibility warning. 2019-10-30 21:44:27 +01:00
Aleksey Kladov dc65219ae1 document feature flags 2019-10-25 09:00:30 +03:00
bors[bot] d2e1f9f6da Merge #1980
1980: Shorten inline type hints r=matklad a=detrumi

Implements #1946 

Co-authored-by: Wilco Kusee <wilcokusee@gmail.com>
2019-10-23 11:13:04 +00:00
Wilco Kusee 770bb8dc9b Do not truncate the range 2019-10-23 13:11:40 +02:00
Wilco Kusee 3b61acb4ae Make inlay hint length configurable 2019-10-18 13:45:04 +02:00
Roberto Vidal f4d50de275 Adds config option for cargo-watch --ignore flag 2019-10-17 20:21:07 +02:00