| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-03-03 | Allow syntax tree to update when changing files | Ville Penttinen | -17/+26 | |
| Previously when using the file based syntax tree, it would not update until a change had been made in the new file. Now we automatically update the syntax tree to match the current file. | ||||
| 2019-03-03 | Rename syntaxtree text provider to SyntaxTreeContentProvider | Ville Penttinen | -13/+11 | |
| 2019-03-03 | Add vscode support for range in SyntaxTreeParams | Ville Penttinen | -10/+40 | |
| This enables the client to use a command to either show the live-updating version of the syntax tree for the current file. Or optionally when a selected range is provided, we then provide a snapshot of the syntax tree for the range. | ||||
| 2019-02-10 | Fix trace and prettier | DJMcNab | -2/+4 | |
| 2019-02-10 | Add support for a seperate output channel for trace messages | DJMcNab | -2/+5 | |
| 2019-02-07 | Run prettier | Ville Penttinen | -4/+11 | |
| 2019-02-07 | Add new configuration "enableEnhancedTyping" to control registering of ↵ | Ville Penttinen | -1/+28 | |
| "type" command This further fixes problems when having a VIM extension (at least vscodevim) enabled, by not calling `overrideCommand('type', commands.onEnter.handle)` when enableEnhancedTyping is set to `false`. The problem is dependent on the order in which extensions are activated, if rust-analyzer is activated before `vscodevim`, rust-analyzer will register the `type` command, and when `vscodevim` finally attempts to activate, it will fail to register the command. This causes `vscodevim` to stop working properly. This setting allows users to disable the registerCommand `type` in rust-analyzer, allowing `vscodevim` to work. The setting defaults to `true`. Currently changing the setting requires reloading of the window. | ||||
| 2019-02-04 | Implement lens for impls and support resolving lenses. | Jeremy Kolb | -0/+12 | |
| 2019-01-30 | Clear the console when running single tasks | kjeremy | -1/+2 | |
| 2019-01-28 | align command naming | Aleksey Kladov | -30/+47 | |
| 2019-01-25 | add gc request | Aleksey Kladov | -0/+3 | |
| 2019-01-25 | better stats | Aleksey Kladov | -7/+59 | |
| 2019-01-23 | ad status command | Aleksey Kladov | -0/+15 | |
| 2019-01-19 | Config for raLspServerPath will be overwritten if __RA_LSP_SERVER_DEBUG is set | Andrew Ross | -2/+5 | |
| Changed presentation from clear to reveal silent Removed the vscode gitignore entry Added debugging documentation Added tasks and launch configs | ||||
| 2019-01-15 | Prettier fix | Alan Du | -1/+4 | |
| 2019-01-14 | Reveal the newly added source change in the editor. | Jeremy A. Kolb | -0/+1 | |
| 2019-01-12 | npm fix run | Jeremy Kolb | -9/+16 | |
| 2019-01-12 | Move run_single into runnables | Jeremy Kolb | -66/+17 | |
| 2019-01-11 | Code lens support for running tests | Jeremy A. Kolb | -0/+68 | |
| 2019-01-05 | Allow user to set path to ra_lsp_server in vscode settings | gentoo90 | -1/+6 | |
| 2019-01-05 | fix open of created or renamed file | Bernardo | -1/+2 | |
| 2019-01-03 | use lsp WorkspaceEdit instead of custom source_file_edits and file_system_edits | Bernardo | -33/+10 | |
| 2018-12-28 | highlight macro idents | Aleksey Kladov | -1/+2 | |
| 2018-12-24 | Merge #302 | bors[bot] | -1/+25 | |
| 302: WIP: Support tracing lsp requests. r=DJMcNab a=DJMcNab EDIT: We need to work out a better way to handle settings before this can be merged. Help wanted TODO: Debug why decorations are sent even when highlightingOn is disabled This makes the log volume so high its impossible to work with anyway. (Continuation of #84 [#99 only disabled using it, not making sure we don't send it]). These logs can be used in https://microsoft.github.io/language-server-protocol/inspector/ Co-authored-by: DJMcNab <36049421+djmcnab@users.noreply.github.com> | ||||
| 2018-12-24 | Add a very hacky workaround to not trace decorations requests | DJMcNab | -1/+25 | |
| 2018-12-22 | Fix analyzer extension fail when there are enabled any VIM extension. | frai | -13/+17 | |
| 2018-12-15 | use new clear-terminal feature | Aleksey Kladov | -2/+2 | |
| 2018-12-08 | Remove uneeded characters | DJMcNab | -3/+3 | |
| 2018-11-09 | Fix on enter | Adolfo Ochagavía | -2/+2 | |
| 2018-11-08 | workspace-symbols function for Emacs | Aleksey Kladov | -1/+4 | |
| 2018-11-07 | Rename File -> SourceFileNode | Aleksey Kladov | -2/+2 | |
| 2018-11-05 | Fully add inline modules to module tree | Aleksey Kladov | -9/+8 | |
| 2018-10-21 | Fix typo | Pascal Hertleif | -1/+1 | |
| Truly an A+, errrr, +a commit | ||||
| 2018-10-12 | Fold multiline comments | Adolfo Ochagavía | -2/+2 | |
| 2018-10-10 | Remove error publishing through publishDecorations | Adolfo Ochagavía | -7/+0 | |
| 2018-10-09 | Format vscode extension and add npm run fix | Adolfo Ochagavía | -14/+28 | |
| 2018-10-09 | Add on-enter handler | Aleksey Kladov | -2/+51 | |
| Now, typing doc comments is much more pleasant | ||||
| 2018-10-08 | Run prettier on all files | Daniel McNab | -102/+203 | |
| 2018-10-08 | Add tslint and prettier to ci | Daniel McNab | -13/+13 | |
| 2018-10-08 | Add some comments | Adolfo Ochagavía | -25/+44 | |
| 2018-10-08 | Fix remaining tslint suggestions | Adolfo Ochagavía | -77/+81 | |
| 2018-10-07 | Apply tslint suggestions, round one | Adolfo Ochagavía | -242/+245 | |
| 2018-10-07 | Refactor vscode extension | Adolfo Ochagavía | -415/+518 | |
| 2018-10-06 | Dynamically apply highlightingOn config | Adolfo Ochagavía | -11/+36 | |
| Fixes #84 | ||||
| 2018-09-29 | Add a setting to disable custom syntax highlighting | Adolfo Ochagavía | -4/+12 | |
| 2018-09-16 | goto super places cursor on mod | Aleksey Kladov | -0/+1 | |
| 2018-09-16 | rename all things | Aleksey Kladov | -0/+400 | |
