SecureCRT 和 Nice PHP/JS 语法高亮:如何配置?

SecureCRT 和 Nice PHP/JS 语法高亮:如何配置?

我正在使用 Windows 7 运行 SecureCRT。在谷歌搜索了一下之后,出现了 VanDyke 的结果,但我希望它不只是黑色背景和所有绿色文本(当然这比 SecureCRT 默认设置要好,但仍然会让你的眼睛流血),它可以识别开始和结束标签、条件块等等等等... 两者都适用于 php/js。

最好的解决方法是什么?我在家里的 Mac 上使用 vim,配置 .vimrc 相当容易,但对于 Windows 来说,这有点令人生畏。

任何有助于完成此项设置的意见都将受到赞赏。

我的 SecureCRT:

在此处输入图片描述

编辑:

在我的 /etc/ 文件夹中,我有一个 vimrc 文件。不是 .vimrc 文件,而是 vimrc 文件。

我打开它,里面有一些标准的类似 vim 的东西,看这里:

cif v:lang =~ "utf8$" || v:lang =~ "UTF-8$"
   set fileencodings=ucs-bom,utf-8,latin1
endif

set nocompatible    " Use Vim defaults (much better!)
set bs=indent,eol,start     " allow backspacing over everything in insert mode
"set ai         " always set autoindenting on
"set backup     " keep a backup file
set viminfo='20,\"50    " read/write a .viminfo file, don't store more
            " than 50 lines of registers
set history=50      " keep 50 lines of command line history
set ruler       " show the cursor position all the time

syntax on
colorscheme blue

" Only do this part when compiled with support for autocommands
if has("autocmd")
  augroup fedora
  autocmd!
  " In text files, always limit the width of text to 78 characters
  " autocmd BufRead *.txt set tw=78
  " When editing a file, always jump to the last cursor position
  autocmd BufReadPost *
  \ if line("'\"") > 0 && line ("'\"") <= line("$") |
  \   exe "normal! g'\"" |
  \ endif
  " don't write swapfile on most commonly used directories for NFS mounts or USB sticks
  autocmd BufNewFile,BufReadPre /media/*,/mnt/* set directory=~/tmp,/var/tmp,/tmp
  " start with spec file template
  autocmd BufNewFile *.spec 0r /usr/share/vim/vimfiles/template.spec
  augroup END
endif

if has("cscope") && filereadable("/usr/bin/cscope")
   set csprg=/usr/bin/cscope
   set csto=0
   set cst
   set nocsverb
   " add any database in current directory
   if filereadable("cscope.out")
      cs add cscope.out
   " else add database pointed to by environment
   elseif $CSCOPE_DB != ""
      cs add $CSCOPE_DB
   endif
   set csverb
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

filetype plugin indent on3f3

if &term=="xterm"
     set t_Co=256
     set t_Sb=[4%dm
     set t_Sf=[3%dm
     colorscheme blue 
endif

" Don't wake up system with blinking cursor:
" http://www.linuxpowertop.org/known.php
let &guicursor = &guicursor . ",a:blinkon0"

现在看来,无论我对这个文件做了什么,它都无法被识别。我该如何设置,以便无论这个 vimrc 文件的内容是什么,它都能被识别?

根据:version,这被列为系统 vimrc 文件,请参阅下面的我的评论以了解 github 要点。

在服务器上进行搜索

find / -name .vimrc

没有返回任何内容

@romainl 我尝试通过安装 vim,apt-get但是我得到了

[root@Map16-04 etc]# apt-get install vim
Reading Package Lists... Done
Building Dependency Tree... Done
Selecting vim-enhanced for 'vim'
vim-enhanced is already the newest version.
0 upgraded, 0 newly installed, 0 removed and 0 not upgraded.

vim-full当我尝试这些时,却vim-nox找不到包。

答案1

无论您在什么平台上,语法高亮都是以相同的方式完成的。

假设你的终端能够 a) 显示至少 8 种颜色,b) 它正确地告诉 vim 它的功能以及 c) Vim 实际上是使用语法支持构建的;你只需要将以下几行添加到你的 Vim 加载的 .vimrc 或 _vimrc 中:

filetype plugin indent on
syntax on

但你没有过多谈论你的设置:

  • 您是在本地还是远程使用 vim?
  • 输出是什么

    :echo $TERM
    :echo &t_Co
    :version
    

编辑

:version根据您使用的 Vim 版本判断:

  • 无法在命令行上完成-cmdline_compl
  • 无法做差异-diff
  • 无法编写脚本-eval
  • 不能折叠-fold
  • 无法有快速修复窗口-quickfix
  • 并且不能进行语法高亮-syntax

由于您在该服务器上进行编程,因此该特定的 Vim 版本(小型)几乎毫无价值。

解决这一困境的唯一方法是安装正确的版本。如果您拥有必要的权限,则可以使用服务器的包管理器进行安装,vim-nox或者vim-full,如果您在这台机器上没有太多权限,则可以从源代码构建 Vim。

在你抱怨之前,默认的 Vim 是每一个UNIX-y 操作系统总是在许多方面都受到了损害。总是非常适合编辑配置文件,但是绝不足以应付重度使用。

相关内容