-
-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(editing-support): add suda.vim (#284)
feat(suda): add suda-vim.lua
- Loading branch information
1 parent
07001f3
commit aca1c8a
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# suda.vim | ||
|
||
**Repository:** <https://github.com/lambdalisue/suda.vim> | ||
|
||
suda is a plugin to read or write files with sudo command.. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
return { | ||
"lambdalisue/suda.vim", | ||
keys = { | ||
{ | ||
"<leader>W", | ||
":SudaWrite<CR>", | ||
desc = "Suda Write", | ||
}, | ||
}, | ||
cmd = { | ||
"SudaRead", | ||
"SudaWrite", | ||
}, | ||
} |