This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
e runtime/autoload/netrw.vim | |
call feedkeys('zR') | |
for i in range(1, 5000) | |
call feedkeys('j') | |
endfor | |
call feedkeys(":q\<CR>") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/vim/autoload/vlime/server.vim b/vim/autoload/vlime/server.vim | |
index 464129c..4781bb4 100644 | |
--- a/vim/autoload/vlime/server.vim | |
+++ b/vim/autoload/vlime/server.vim | |
@@ -203,7 +203,7 @@ function! vlime#server#BuildServerCommand(cl_impl) | |
\ string(cl_impl) . ' not supported' | |
endif | |
- return Builder(vlime_loader, '(vlime:main)') | |
+ return Builder(vlime_loader, '(vlime:main #+allegro :backend #+allegro :vlime-patched)') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function! s:lsp_def_add_stack() abort | |
let l:tagname = expand('<cword>') | |
let l:tagstack = gettagstack() | |
let l:bufnr = bufnr('%') | |
let l:pos = getpos('.') | |
execute("LspDefinition") | |
if l:tagstack.curidx == 1 | |
let l:action = 'r' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/colors/spring-night.vim b/colors/spring-night.vim | |
index 4675c05..5bf9fa0 100644 | |
--- a/colors/spring-night.vim | |
+++ b/colors/spring-night.vim | |
@@ -38,7 +38,7 @@ let g:spring_night_highlight_terminal = get(g:, 'spring_night_highlight_terminal | |
let s:gui_running = has('gui_running') | |
let s:true_colors = has('termguicolors') && &termguicolors | |
let s:undercurl_attr = s:gui_running ? 'gui=undercurl cterm=undercurl' : 'gui=underline cterm=underline' | |
-let s:italic_attr = g:spring_night_kill_italic ? '' : 'gui=italic' | |
+let s:italic_attr = g:spring_night_kill_italic ? '' : 'gui=italic cterm=italic' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## make compile_commands.json for clangd | |
MK_C_C_JSON_PWD := `pwd` | |
MK_C_C_JSON_SRCS := $(ALL_SRC) | |
MK_C_C_JSON_CFLAGS := $(ALL_CFLAGS) | |
mk_c_c_json-clean: | |
@-rm -f compile_commands.json | |
mk_c_c_json: mk_c_c_json-clean | |
@echo "[" > compile_commands.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/tty_interface.c b/src/tty_interface.c | |
index 9bc732b..6f0dc23 100644 | |
--- a/src/tty_interface.c | |
+++ b/src/tty_interface.c | |
@@ -223,6 +223,8 @@ static const keybinding_t keybindings[] = {{"\x7f", action_del_char}, /* DEL */ | |
{KEY_CTRL('U'), action_del_all}, /* C-U */ | |
{KEY_CTRL('I'), action_autocomplete}, /* TAB (C-I ) */ | |
{KEY_CTRL('C'), action_exit}, /* C-C */ | |
+ {KEY_CTRL('G'), action_exit}, /* C-G */ | |
+ {KEY_CTRL('['), action_exit}, /* C-[ */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/edit.c b/src/edit.c | |
index d7486a31d..a7c17515e 100644 | |
--- a/src/edit.c | |
+++ b/src/edit.c | |
@@ -1103,7 +1103,9 @@ doESCkey: | |
break; | |
case Ctrl_R: /* insert the contents of a register */ | |
+ ctrl_r_mode = 1; | |
ins_reg(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/edit.c b/src/edit.c | |
index 3eda88f57..d7486a31d 100644 | |
--- a/src/edit.c | |
+++ b/src/edit.c | |
@@ -930,8 +930,10 @@ edit( | |
#endif | |
if (c == Ctrl_V || c == Ctrl_Q) | |
{ | |
+ ctrl_v_mode = 1; | |
ins_ctrl_v(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/lib.go b/lib.go | |
index 37ea63c..5bd64da 100644 | |
--- a/lib.go | |
+++ b/lib.go | |
@@ -53,6 +53,9 @@ func refreshLibrary() { | |
lib, err := tx.CreateBucketIfNotExists([]byte("Library")) | |
checkErr(err) | |
for _, t := range tracks { | |
+ if t.Artist == "" { | |
+ t.Artist = "Unknown Artist" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git branch --color -a | grep -v '*' | sed -E 's/^ +//' | peco | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" |
NewerOlder