OpenVms 中的 vim,退格键不起作用

OpenVms 中的 vim,退格键不起作用

我使用 OpenVms 进行 telnet,默认情况下没有 vim。我必须自己将 vim 移植到 OpenVms。我无法控制机器本身。

我下载了一份适用于 OpenVms 的 vim72 副本并将其解压到一个目录中,然后定义符号以链接到 VIM.EXE。

TGSM_OPR> sh sym vim
  VIM == "$GSMACPTUSER:[USER.TGSM_OPR.AXP.RAYMOND_LAM.VIM72]VIM.EXE"

我将 vimrc 文件复制到 sys$login 目录并开始使用 vim。

我发现在某些情况下无法使用退格键,Ctrl+H 也无法使用。如果我开始一个新文档,退格键可以正常工作,我可以随时退格。但是,如果我打开一个包含一些文本的现有文件,我无法退格这些文本。

我不知道它使用哪个 .vimrc。

我发现有一个 GSMACPTUSER:[USER.TGSM_OPR.AXP.RAYMOND_LAM.VIM72]VIMRC.;6 。但是编辑它之后,比如说在其中添加一行“设置数字”,它并没有产生效果(没有数字)。

编辑:我将 vimrc 的内容复制到 sys$login 内的 .vimrc 中,有些功能可以工作,但有些功能不工作。显示模式可以工作,行号不工作,退格键不工作,尽管我可以使用 REPLACE(按两次 insert)来覆盖单词。

这是我在 sys$login 中创建的 .vimrc 的内容:

" An example for a vimrc file.
"
" Maintainer:   Bram Moolenaar <[email protected]>
" Last change:  2008 Jul 02
"
" To use it, copy it to
"     for Unix and OS/2:  ~/.vimrc
"         for Amiga:  s:.vimrc
"  for MS-DOS and Win32:  $VIM\_vimrc
"       for OpenVMS:  sys$login:.vimrc

" When started as "evim", evim.vim will already have done these settings.

set showmode
set number
set tabstop=8
set shiftwidth=8

if v:progname =~? "evim"
  finish
endif

" Use Vim settings, rather then Vi settings (much better!).
" This must be first, because it changes other options as a side effect.
set nocompatible

" allow backspacing over everything in insert mode
set backspace=indent,eol,start
set backspace=2

if has("vms")
  set nobackup      " do not keep a backup file, use versions instead
  hi search ctermbg=LightBlue
  let Tlist_Ctags_Cmd="vim:ctags.exe" " for taglist plugin
else
  set backup        " keep a backup file
endif
set history=50      " keep 50 lines of command line history
set ruler       " show the cursor position all the time
set showcmd     " display incomplete commands
set incsearch       " do incremental searching

" For Win32 GUI: remove 't' flag from 'guioptions': no tearoff menu entries
" let &guioptions = substitute(&guioptions, "t", "", "g")

" Don't use Ex mode, use Q for formatting
map Q gq

" CTRL-U in insert mode deletes a lot.  Use CTRL-G u to first break undo,
" so that you can undo CTRL-U after inserting a line break.
inoremap <C-U> <C-G>u<C-U>

" In many terminal emulators the mouse works just fine, thus enable it.
if has('mouse')
  set mouse=a
endif

" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
  syntax on
  set hlsearch
endif

" Only do this part when compiled with support for autocommands.
if has("autocmd")

  " Enable file type detection.
  " Use the default filetype settings, so that mail gets 'tw' set to 72,
  " 'cindent' is on in C files, etc.
  " Also load indent files, to automatically do language-dependent indenting.
  filetype plugin indent on

  " Put these in an autocmd group, so that we can delete them easily.
  augroup vimrcEx
  au!

  " For all text files set 'textwidth' to 78 characters.
  autocmd FileType text setlocal textwidth=78

  " When editing a file, always jump to the last known cursor position.
  " Don't do it when the position is invalid or when inside an event handler
  " (happens when dropping a file on gvim).
  " Also don't do it when the mark is in the first line, that is the default
  " position when opening a file.
  autocmd BufReadPost *
    \ if line("'\"") > 1 && line("'\"") <= line("$") |
    \   exe "normal! g`\"" |
    \ endif

  augroup END

else

  set autoindent        " always set autoindenting on

endif " has("autocmd")

" Convenient command to see the difference between the current buffer and the
" file it was loaded from, thus the changes you made.
" Only define it when not defined already.
if !exists(":DiffOrig")
  command DiffOrig vert new | set bt=nofile | r # | 0d_ | diffthis
          \ | wincmd p | diffthis
endif

答案1

要找到 Vim 正在寻找 vimrc 文件的位置,请执行

:version

并查看页面大约一半到三分之二处的行。要查看 Vim 在启动时实际读取的文件,请执行

:scriptnames

Avimrc应该位于该列表的顶部。要查看 vimrc 中是否设置了某个选项,例如“number”,请执行

:verbose set number?

该命令将显示选项的值,如果它是从某个启动文件设置的,它将显示“最后从 <filename> 设置”。

退格键的行为在正常模式和插入模式之间有所不同。如果您仍然遇到问题,那么准确了解您正在采取的步骤以及确切的结果会有所帮助。

答案2

解决方案有分歧。我不知道原因,但下面的设置有效。在尝试了很多不同的设置来调用 VIM.EXE 后,它出现了。

  1. 假设 vim.exe 位于文件夹 $GSMACPTUSER:[USER.TGSM_OPR.AXP.RAYMOND_LAM.VIM72] 中,应该有一个 vimrc 的示例文件,在本例中,它的名字是 VIMRC_EXAMPLE.VIM;1,这是 vimrc 的一个干净副本

  2. 将 VIMRC_EXAMPLE.VIM;1 复制到 sys$login 作为 .VIMRC。在我的例子中,sys$Login 是 $GSMACPTUSER:[USER.TGSM_OPR.AXP]

  3. 使用 dcl 定义 vim 所需的符号。例如:login.com

  4. 在dcl文件中,有2行:

    $ VIM :== $GSMACPTUSER:[USER.TGSM_OPR.AXP.RAYMOND_LAM.VIM72]VIM.EXE

这是为了定义 VIM.EXE,以便我们可以通过“vim [file-spec]”调用 VIM。

$ VIMRUNTIME :== $GSMACPTUSER:[USER.TGSM_OPR.AXP.RAYMOND_LAM.VIM72]

我相信这个符号告诉 VIM 在哪里寻找一些配置。这非常重要。

  1. 运行 dcl 一次,一切正常!可以在 sys$login 中编辑 .vimrc 文件。

相关内容