Compare commits
No commits in common. "e8c252484d44030d244d9f9afaa5ed9dfb129000" and "202f7e4558b3d5adfa7be1f7e7cb3c274c3ed1e5" have entirely different histories.
e8c252484d
...
202f7e4558
|
@ -1,6 +1,6 @@
|
|||
% tmux, reptyr
|
||||
|
||||
# send background process to tmux
|
||||
bg <process> && disown <process> && tmux new -d "$SHELL -c 'reptyr <process>'"
|
||||
bg <process> && disown <process> && tmux new "$SHELL -c 'reptyr <process>'"
|
||||
|
||||
$ process: ps x -eo pid,tty,stat | awk '$2 ~ /pts/' | awk '$3 ~ /T/' | cut -d" " -f1 --- --preview "ps -p {} -o cmd"
|
||||
|
|
|
@ -2,4 +2,5 @@ require("nvim-autopairs").setup()
|
|||
|
||||
-- If you want insert `(` after select function or method item
|
||||
local cmp_autopairs = require("nvim-autopairs.completion.cmp")
|
||||
require("cmp").event:on("confirm_done", cmp_autopairs.on_confirm_done())
|
||||
local cmp = require("cmp")
|
||||
cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done())
|
||||
|
|
Loading…
Reference in New Issue