diff --git a/README.md b/README.md index 817fcf3..9dd9f02 100644 --- a/README.md +++ b/README.md @@ -87,8 +87,6 @@ For example, you can use `yy` to yank a file, then move to a new directory and u You can also use `y` in `visual line` mode to select many files to copy or move. (Note: `visual line` mode is recommended so that you can yank the full file path) -## Trash - ## Tips - Run `:h dirvish-do` to see the help file generated from this README diff --git a/scripts/.fuse_hidden000017b700000006 b/scripts/.fuse_hidden000017b700000006 deleted file mode 100644 index 5fdd8a7..0000000 --- a/scripts/.fuse_hidden000017b700000006 +++ /dev/null @@ -1,8 +0,0 @@ -Git add . -let s:commitMsg = input("Commit message: ", "", "file") -if len(s:commitMsg) == 0 - finish -endif -exec "Git commit -m '" . s:commitMsg . "'" -Git pull --rebase -Git push diff --git a/scripts/.fuse_hidden00002ace00000007 b/scripts/.fuse_hidden00002ace00000007 deleted file mode 100644 index a1bf87c..0000000 --- a/scripts/.fuse_hidden00002ace00000007 +++ /dev/null @@ -1,8 +0,0 @@ -!git add . -let s:commitMsg = input("Commit message: ", "", "file") -if len(s:commitMsg) == 0 - finish -endif -exec "!git commit -m '".s:commitMsg."'" -!git pull --rebase -!git push diff --git a/scripts/git_push.lua b/scripts/git_push.lua index 78d1431..3d17329 100644 --- a/scripts/git_push.lua +++ b/scripts/git_push.lua @@ -1,7 +1,7 @@ #!/usr/bin/env -S nvim -l vim.cmd [[ !git add . -exec "!git commit -m '".luaeval('_G.arg[1]')."']" +exec "!git commit -m '".luaeval('_G.arg[1]')."'" !git pull --rebase !git push ]]