ISPF 编辑器(曾在大型机上工作过的老手都很了解它)有很多非常有用的(在我看来)行命令,可以让您避免用鼠标选择代码来剪切和粘贴、删除、移动、移动等行。
例如,使用cc ... cc
(= 复制一组行) 和a
(= after) 或b
(= before),您可以在另一行之后或之前复制某些行。
命令:
Command ===> Scroll ===> CSR
**************************** Top of Data *****************************
cc0010 Some text
000020 Again some text
cc0030 Some text again and again
a00040 which I like to put after this line
*************************** Bottom of Data ***************************
结果:
Command ===> Scroll ===> CSR
**************************** Top of Data *****************************
000040 which I like to put after this line
000010 Some text
000020 Again some text
000030 Some text again and again
*************************** Bottom of Data ***************************
您r<n>
可以重复一行 n 次(这对于编辑表格很有用)。
命令:
Command ===> Scroll ===> CSR
**************************** Top of Data *****************************
r30010 A & B \\
*************************** Bottom of Data ***************************
结果:
Command ===> Scroll ===> CSR
**************************** Top of Data *****************************
000010 A & B \\
000010 A & B \\
000010 A & B \\
000010 A & B \\
*************************** Bottom of Data ***************************
谷歌搜索后我发现SPFLite但它似乎无法像简单的 Notepad++ 那样突出显示 LaTeX 命令。
有人知道是否有类似 ISPF 的编辑器可以突出显示 LaTeX 命令吗?(我在 Windows 10 上工作)。
答案1
老问题了,但不知道 op 最终去了哪里?我是 Z 上的 tso ispf 用户,我一直在 Linux 上使用 vim,没有任何问题,我使用 vimtutor 学习基础知识,然后使用一本名为 Mastering Vim 的书和一本名为 practical Vim 的书。要神奇地使用它,您可以使用 Vimscript(教程名为 learn vimscript the hard way)...它也有 latex 插件,并且纯粹基于终端。您还会发现它比其他任何编辑器都默认安装,尤其是旧版 Vi。您还可以查看较新的 nvim,它使用 lua 而不是 vimscript(我仍然会坚持使用 Vim,尽管还没有使用 nvim)...
我希望它能够为我提供良好的服务,因为我计划将它作为我的主要编辑器,下一步实际上是学习 Latex。
祝你好运