diff --git a/vim-conf/help/help-vimscode b/vim-conf/help/help-vimscode index 28b9ee7..df357f2 100644 --- a/vim-conf/help/help-vimscode +++ b/vim-conf/help/help-vimscode @@ -1,9 +1,4 @@ -VIM - Vi IMproved 8.2 (2019 Dec 12, compiled Oct 01 2021 01:51:08) - -Use: vim [args] [file ...] open the specified file(s) - or: vim [args] - read the text from stdin - or: vim [args] -t marker open the file that contains the marker - or: vim [args] -q [fichErr] open at the place of the first error +VIM - Vi IMproved 8.2 - VIMSCODE - IDE Vim 1.0 VimsCode Arguments: @@ -11,63 +6,3 @@ VimsCode Arguments: -e Load VimsCode with esp32 help -p Load VimsCode with platform.io help -Vim Arguments: - -- Only file names are specified after this - -g Launch the graphical interface (like "gvim") - -f, --nofork Foreground: do not detach the GUI from the terminal - -v Mode Vi (as "vi") - -e Ex Mode (as "ex") - -E Enhanced Ex Mode - -s Silent mode (batch) (only for "ex") - -d diff mode (like "vimdiff") - -y Easy mode (like "evim", vim without modes) - -R Read-only mode (like "view") - -Z Restricted mode (like "rvim") - -m Prohibit registration of files - -M Prohibit any text changes - -b Binary mode - -l Mode lisp - -C Compatible with Vi: 'compatible' - -N Not fully compatible with Vi: 'nocompatible' - -V[N][] Verbose mode [N level] [in ] - -D Debug mode - -n Do not use an exchange file, only memory - -r List exchange files and exit - -r Recover a crashed session - -L Like -r - -Start in Arabic mode - -H Start in Hebrew mode - -T Set terminal type to - --no-a-term No warning if input/output is not a terminal - --ttyfail Quit if the input or output is not a terminal - -u Use instead of the usual vimrc - -U Use instead of usual gvimrc - --noplugin Do not load any graft - -p[N] Open N tabs (default: one for each file) - -o[N] Open N windows (default: one for each file) - -Y[N] Like -o but split vertically - + Open at the end of the file - + Open the file to the line - --cmd Run before loading vimrc files - -c Run after the 1st file is loaded - -S Source the file after the 1st file is loaded - -s Read the Normal mode commands from the file - -w Add all commands typed in the file - -W Write all commands typed in the file - -x Edit encrypted files - -X Do not connect to an X server - --remote Edit in a Vim server if possible - --remote-silent ... Same, but no error if no server - --remote-wait Like --remote but do not exit until the edit is complete - --remote-wait-silent Same, but no error if no server - --remote-tab[-wait][-silent] Like --remote but open a tab for each file - --remote-send Send to a Vim server and exit - --remote-expr Evaluate in a Vim server, display the result - --serverlist List available Vim server names and exit - --servername Send to/become the Vim server named - --startuptime Write timestamp messages on startup in - -i Use instead of the usual viminfo - --clean 'nocompatible', default settings, no graft or viminfo - -h or --help Show help (this message) then exit - --version View version information and exit - diff --git a/vim-conf/vimscode.sh b/vim-conf/vimscode.sh index 1812b4e..005445e 100755 --- a/vim-conf/vimscode.sh +++ b/vim-conf/vimscode.sh @@ -1,13 +1,13 @@ #!/bin/bash if [ "$1" = '-a' ] || [ "$1" = '-arduino' ] ; then - vim -p $2 ~/.vim/help/Fr/aide-arduino + vim -p $2 ~/.vim/help/En/help-arduino elif [ "$1" = '-e' ] || [ "$1" = '-esp' ] ; then - vim -p $2 ~/.vim/help/Fr/aide-esp32 + vim -p $2 ~/.vim/help/En/help-esp32 elif [ "$1" = '-p' ] || [ "$1" = '-platform.io' ] ; then - vim -p $2 ~/.vim/help/Fr/aide-platform.io + vim -p $2 ~/.vim/help/En/help-platform.io elif [ "$1" = '' ] || [ "$1" = '' ] ; then - cat ~/.vim/help/aide-vimscode + cat ~/.vim/help/help-vimscode else echo "Option $1 invalid" fi