/usr/share/doc/global/examples/elvis.rc is in global 6.6.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | "
" An example of .elvisrc for GLOBAL.
"
set tagprg="elvis-global $1"
alias gtagscontext {
eval ("tag" current("word") "--from-here" current("line"):filename)
}
alias gtagsbcontext {
eval ("browse" current("word") "--from-here" current("line"):filename)
}
alias gtagscontexts {
eval ("stag" current("word") "--from-here" current("line"):filename)
}
alias gtagsbcontexts {
eval ("sbrowse" current("word") "--from-here" current("line"):filename)
}
alias gtagstagf {
eval ("tag -f" filename)
}
alias gtagsbtagf {
eval ("browse -f" filename)
}
alias gtagstagfs {
eval ("stag -f" filename)
}
alias gtagsbtagfs {
eval ("sbrowse -f" filename)
}
alias gozilla {
eval ("!gozilla " +current("line") " " filename)
}
map <C-n> :tag<Enter>
map <C-g> :gozilla<Enter>
map <F3> :gtagscontext<Enter>
map <F4> :gtagsbcontext<Enter>
map <C-w><F3> :gtagscontexts<Enter>
map <C-w><F4> :gtagsbcontexts<Enter>
map <F6> :gtagstagf<Enter>
map <F7> :gtagsbtagf<Enter>
map <C-w><F6> :gtagstagfs<Enter>
map <C-w><F7> :gtagsbtagfs<Enter>
|