File tree Expand file tree Collapse file tree 4 files changed +1
-41
lines changed Expand file tree Collapse file tree 4 files changed +1
-41
lines changed Original file line number Diff line number Diff line change 167
167
"default" : {},
168
168
"description" : " Fine grained feature flags to disable annoying features"
169
169
},
170
- "rust-analyzer.enableEnhancedTyping" : {
171
- "type" : " boolean" ,
172
- "default" : false ,
173
- "description" : " Enables enhanced typing. NOTE: If using a VIM extension, you should set this to false"
174
- },
175
170
"rust-analyzer.raLspServerPath" : {
176
171
"type" : [
177
172
" string"
Original file line number Diff line number Diff line change @@ -26,17 +26,9 @@ async function handleKeypress(ctx: Ctx) {
26
26
return true ;
27
27
}
28
28
29
- export function onEnterOverride ( ctx : Ctx ) : Cmd {
30
- return async ( event : { text : string } ) => {
31
- if ( event . text === '\n' ) {
32
- handleKeypress ( ctx ) ;
33
- }
34
- } ;
35
- }
36
-
37
29
export function onEnter ( ctx : Ctx ) : Cmd {
38
30
return async ( ) => {
39
- if ( handleKeypress ( ctx ) ) return ;
31
+ if ( await handleKeypress ( ctx ) ) return ;
40
32
41
33
await vscode . commands . executeCommand ( 'default:type' , { text : '\n' } ) ;
42
34
} ;
Original file line number Diff line number Diff line change @@ -50,30 +50,6 @@ export class Ctx {
50
50
this . pushCleanup ( d ) ;
51
51
}
52
52
53
- overrideCommand ( name : string , factory : ( ctx : Ctx ) => Cmd ) {
54
- const defaultCmd = `default:${ name } ` ;
55
- const override = factory ( this ) ;
56
- const original = ( ...args : unknown [ ] ) =>
57
- vscode . commands . executeCommand ( defaultCmd , ...args ) ;
58
- try {
59
- const d = vscode . commands . registerCommand (
60
- name ,
61
- async ( ...args : unknown [ ] ) => {
62
- if ( ! ( await override ( ...args ) ) ) {
63
- return await original ( ...args ) ;
64
- }
65
- } ,
66
- ) ;
67
- this . pushCleanup ( d ) ;
68
- } catch ( _ ) {
69
- vscode . window . showWarningMessage (
70
- 'Enhanced typing feature is disabled because of incompatibility ' +
71
- 'with VIM extension, consider turning off rust-analyzer.enableEnhancedTyping: ' +
72
- 'https://github.com/rust-analyzer/rust-analyzer/blob/master/docs/user/README.md#settings' ,
73
- ) ;
74
- }
75
- }
76
-
77
53
get subscriptions ( ) : Disposable [ ] {
78
54
return this . extCtx . subscriptions ;
79
55
}
Original file line number Diff line number Diff line change @@ -29,9 +29,6 @@ export async function activate(context: vscode.ExtensionContext) {
29
29
ctx . registerCommand ( 'applySourceChange' , commands . applySourceChange ) ;
30
30
ctx . registerCommand ( 'selectAndApplySourceChange' , commands . selectAndApplySourceChange ) ;
31
31
32
- if ( ctx . config . enableEnhancedTyping ) {
33
- ctx . overrideCommand ( 'type' , commands . onEnterOverride ) ;
34
- }
35
32
activateStatusDisplay ( ctx ) ;
36
33
37
34
activateHighlighting ( ctx ) ;
You can’t perform that action at this time.
0 commit comments