1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 06:37:46 +00:00

Rename edit to nve to avoid potential conflicts (#768)

- rename `edit` to `nve` to avoid potential conflicts
- `e`, `c`, `v`, `x` export as alias
- nested nvim creates new buffer when no filename as args
- `cwdhist` use Alt+o as default

Co-authored-by: nash <nash@iffy.me>
This commit is contained in:
fj0r 2024-02-29 20:32:19 +08:00 committed by GitHub
parent f6bbfe5b77
commit a31696ea2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 35 additions and 71 deletions

View file

@ -40,7 +40,7 @@ def __cwdhist_menu [] {
def __cwdhist_keybinding [] {
{
name: cwdhist_menu
modifier: control
modifier: alt
keycode: char_o
mode: [emacs, vi_normal, vi_insert]
event: [
@ -49,16 +49,6 @@ def __cwdhist_keybinding [] {
}
}
def __cwdhist_editing [] {
{
name: open_command_editor
modifier: alt
keycode: char_o
mode: [emacs, vi_normal, vi_insert]
event: { send: openeditor }
}
}
def __cwdhist_switching [] {
{
name: cwdhist_switching
@ -118,6 +108,6 @@ export-env {
$env.config = ($env.config
| upsert menus ($env.config.menus | append (__cwdhist_menu))
| upsert keybindings ($env.config.keybindings | append [(__cwdhist_keybinding) (__cwdhist_editing) (__cwdhist_switching)])
| upsert keybindings ($env.config.keybindings | append [(__cwdhist_keybinding) (__cwdhist_switching)])
)
}