If you are using vi/vim/gvim for scripting with cdo, you can sometimes hardly remember cdo commands or you are just too lazy to type out "sellonlatbox" all the time, this might be something for you.
- Add the lines of "add_cdo_complete_to_your_vimrc" to your "~/.vimrc" to include the complete function
cat add_cdo_complete_to_your_vimrc >> ~/.vimrc
Optional:
- Variable completion: Set a file path and 'ENABLE' vars_completion in your ".vimrc"
- If you want to use <Tab> for auto-completion like in your shell, add those lines to your .vimrc
FIXME: Doesnt replace yet, but only
" Use TAB to complete when typing words, else inserts TABs as usual.
" Uses dictionary and source files to find matching words to complete.
" "See help completion for source,
" Note: usual completion is on <C-n> but more trouble to press all the time.
" Never type the same word twice and maybe learn a new spellings!
" Use the Linux dictionary when spelling is in doubt.
" Window users can copy the file to their machine.
function! Tab_Or_Complete()
if col('.')>1 && strpart( getline('.'), col('.')-2, 3 ) =~ '^\w'
return "\<C-N>"
else
return "\<Tab>"
endif
endfunction
:inoremap <Tab> <C-R>=Tab_Or_Complete()<CR>
Source: https://vim.wikia.com/wiki/Smart_mapping_for_tab_completion
The usual <Tab> command will still be executed when no completion is feasable, eg. in the beginning of (empty) lines
3. If you fancy other auto-completion setting, play with the line
set complete=longest,menuone
The current setting completes up to the last common string and then shows a menu. Other options are listed in the vim help or https://vimdoc.sourceforge.net/htmldoc/options.html#'completeopt'
For syntax highlighting:
- Copy the file ".vim/after/syntax/sh.vim" and make sure your ".vimrc" contains
syntax on
This works for '.bash', '.ksh' and '*.sh'-files. If you want to use other shell file extensions, please rename according to the available file in "/usr/share/vim/vim74/syntax/".
Start typing your desired cdo command and hit <Ctrl-X><Ctrl-U>
cdo sell<Ctrl-X><Ctrl-U>
Get the following autocompletion options
sellevel sellevel description
sellevidx sellevidx description
sellonlatbox sellonlatbox description
selltype selltype description
...
Hit <Ctrl-N> go get the first shown match
cdo sellevel
Hit another <Ctrl-N> to choose the next match or move down with arrow keys and hit for your choice
- MIT license
- ?
Aaron Spring
Bundesstraße 53
ZMAW Room 122
[email protected]
Looking forward to receiving your questions, comments or wishes
- v0.1: basic auto-complete function based on cdoCompletion.bash as of 2016/09/06
- v0.2: some MPI-ESM variables included for HAMOCC: 2d, 3d and sediment; MPIOM: 2d, 3d and ECHAM6: BOT, LOG, ...; checkout this repositories ".vim/dictionary"
- v1.0: completly new approach: uses all 'cdo --operators' listings installed on your machine, requires cdo-1.7.1 or later, also completes variables gathered by 'cdo vardes files', requires '*.sh' files, variable_completion and cdo_completion can be enabled or disabled in .vimrc
- v1.1 syntax included: is applied after the current '?sh' syntax, so cdoKeywords are included
- v1.2 filename *sh requirement taken out
- v1.3 [3.6.2018] changed cdo --operator to cdo --operators; --operator only lists a few, --operators all; now compatible with cdo-1.9.2
- anything else needed?
- Uwe Schulzweida, creator of cdo
- Prince K Xavier, the dude who set up auto-completion for NCL and made me think about this
- Ralf Müller
- similar stuff for NCL: https://github.com/aaronspring/ncl_lazy_vim