Commit 32a55ba 1 parent dffb683 commit 32a55ba Copy full SHA for 32a55ba
File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -338,9 +338,9 @@ impl EditorView {
338
338
let primary_cursor_scope: usize = {
339
339
if true {
340
340
match mode {
341
- Mode :: Insert => theme. find_scope_index ( "ui.statusline .insert" ) ,
342
- Mode :: Select => theme. find_scope_index ( "ui.statusline .select" ) ,
343
- Mode :: Normal => theme. find_scope_index ( "ui.statusline .normal" ) ,
341
+ Mode :: Insert => theme. find_scope_index ( "ui.cursor .insert" ) ,
342
+ Mode :: Select => theme. find_scope_index ( "ui.cursor .select" ) ,
343
+ Mode :: Normal => theme. find_scope_index ( "ui.cursor .normal" ) ,
344
344
}
345
345
. unwrap_or ( cursor_scope)
346
346
} else {
Original file line number Diff line number Diff line change 23
23
"ui.cursor" = { fg = " background" , bg = " orange" , modifiers = [" dim" ] }
24
24
"ui.cursor.match" = { fg = " green" , modifiers = [" underlined" ] }
25
25
"ui.cursor.primary" = { fg = " background" , bg = " cyan" , modifiers = [" dim" ] }
26
+ "ui.cursor.normal" = { fg = " background" , bg = " cyan" }
27
+ "ui.cursor.insert" = { fg = " background" , bg = " green" }
28
+ "ui.cursor.select" = { fg = " background" , bg = " purple" }
26
29
"ui.cursorline.primary" = { bg = " background_dark" }
27
30
"ui.help" = { fg = " foreground" , bg = " background_dark" }
28
31
"ui.linenr" = { fg = " comment" }
You can’t perform that action at this time.
0 commit comments