mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
Fix that zed cli is zeditor
This commit is contained in:
@@ -12,7 +12,7 @@ fi
|
|||||||
case "$1" in
|
case "$1" in
|
||||||
code) editor="code"; name="VSCode"; glyph="" ;;
|
code) editor="code"; name="VSCode"; glyph="" ;;
|
||||||
cursor) editor="cursor"; name="Cursor"; glyph="" ;;
|
cursor) editor="cursor"; name="Cursor"; glyph="" ;;
|
||||||
zed) editor="zed"; name="Zed"; glyph="" ;;
|
zed | zeditor) editor="zeditor"; name="Zed"; glyph="" ;;
|
||||||
sublime_text) editor="sublime_text"; name="Sublime Text"; glyph="" ;;
|
sublime_text) editor="sublime_text"; name="Sublime Text"; glyph="" ;;
|
||||||
helix) editor="helix"; name="Helix"; glyph="" ;;
|
helix) editor="helix"; name="Helix"; glyph="" ;;
|
||||||
vim) editor="vim"; name="Vim"; glyph="" ;;
|
vim) editor="vim"; name="Vim"; glyph="" ;;
|
||||||
|
|||||||
+2
-2
@@ -389,7 +389,7 @@ show_setup_default_editor_menu() {
|
|||||||
omarchy-cmd-present nvim && options="$options Neovim"
|
omarchy-cmd-present nvim && options="$options Neovim"
|
||||||
omarchy-cmd-present code && options="${options:+$options\n} VSCode"
|
omarchy-cmd-present code && options="${options:+$options\n} VSCode"
|
||||||
omarchy-cmd-present cursor && options="${options:+$options\n} Cursor"
|
omarchy-cmd-present cursor && options="${options:+$options\n} Cursor"
|
||||||
omarchy-cmd-present zed && options="${options:+$options\n} Zed"
|
omarchy-cmd-present zeditor && options="${options:+$options\n} Zed"
|
||||||
omarchy-cmd-present sublime_text && options="${options:+$options\n} Sublime Text"
|
omarchy-cmd-present sublime_text && options="${options:+$options\n} Sublime Text"
|
||||||
omarchy-cmd-present helix && options="${options:+$options\n} Helix"
|
omarchy-cmd-present helix && options="${options:+$options\n} Helix"
|
||||||
omarchy-cmd-present vim && options="${options:+$options\n} Vim"
|
omarchy-cmd-present vim && options="${options:+$options\n} Vim"
|
||||||
@@ -400,7 +400,7 @@ show_setup_default_editor_menu() {
|
|||||||
nvim) current=" Neovim" ;;
|
nvim) current=" Neovim" ;;
|
||||||
code) current=" VSCode" ;;
|
code) current=" VSCode" ;;
|
||||||
cursor) current=" Cursor" ;;
|
cursor) current=" Cursor" ;;
|
||||||
zed) current=" Zed" ;;
|
zed | zeditor) current=" Zed" ;;
|
||||||
sublime_text) current=" Sublime Text" ;;
|
sublime_text) current=" Sublime Text" ;;
|
||||||
helix) current=" Helix" ;;
|
helix) current=" Helix" ;;
|
||||||
vim) current=" Vim" ;;
|
vim) current=" Vim" ;;
|
||||||
|
|||||||
Reference in New Issue
Block a user