a simple vim set for fortran

vim ~/.vimrc

it‘s a new file if you did not create it before

write as follows in the vimrc file

syntax on
set tabstop=4
set autoindent shiftwidth=4
set cindent
set number
let fortran_have_tabs=1
let fortran_fold=1
let fortran_fold_conditionals=1
set foldmethod=syntax

then write and quit(press esc, and then :wq)

时间: 2024-12-24 23:16:12

a simple vim set for fortran的相关文章

[Practical.Vim(2012.9)].Drew.Neil.Tip10学习摘要

Use Counts to Do Simple Arithmetic 在vim中,执行<C-a>和<C-x>命令可以对文本中的数字直接进行加或减. 如果不提供数字而直接执行上面的命令的话,默认对光标所在的数字值进行加1或减1. 如果在命令前面加一个数字,就会对光标所在的数字加或减这个数. 如果光标所在位置不是数字,就会自动在当前行后面查找数字然后定位到该数字上. 如下面的测试文件 我们要复制最后一行然后把0px改为-180px. 除了直接对数字进行更改外可以使用命令<C-x&

[python]实现Simple Database

闲来自己写了一个小的简单数据库(Simple Database),要求最好用python写.因为很久没写python了,语法都忘了很多,写的过程中温故知新. 首先这个数据库实现了如下功能: 数据命令: SET name value – Set the variable name to the value value. Neither variable names nor values will contain spaces. GET name – Print out the value of t

vim插件详细安装过程

1 写在前面   Linux下编程一直被诟病的一点是: 没有一个好用的IDE, 但是听说Linux牛人, 黑客之类的也都不用IDE. 但是对我等从Windows平台转移过来的Coder来说, 一个好用的IDE是何等的重要啊, 估计很多人就是卡在这个门槛上了, "工欲善其事, 必先利其器"嘛, 我想如果有一个很好用的IDE, 那些Linux牛人也会欢迎的. 这都是劳动人民的美好愿望罢了, 我今天教大家把gvim改装成一个简易IDE, 说它"简易"是界面上看起来&quo

vim摘要

The "." command is one of the most simple yet powerful commands in Vim. Itrepeats the last change. For instance, suppose you are editing an HTML fileand want to delete all the <B> tags. You position the cursor on the first <and delete t

Linux+环境使用vim搭建php+IDE

让我们开始DIY吧-!!终端下执行命令:whereis vim     将列出vim安装的路径. 否则执行 sudo apt-get install vim 安装vim .成功安装了vim,只需要在用户根目录下创建.vimrc文件,在配置文件下写入如下信息.比如:"引号代表注释 set hlsearch                  "高亮度反白set backspace=2               "可随时用倒退键删除set autoindent          

vim强大探究之光标移动

vim强大探究之光标移动 - richerg85的专栏 - 博客频道 - CSDN.NET 废话不多说,直接进入主题,现在在看"byte of vim",记录强大的命令,一步一步的进阶,希望成为一个Vimer! ???? 1.简单方向移动 ?? ? (最基本的移动命令,类似你键盘的左右上下http://write.blog.csdn.net/postedit方向键,但是功能却是异常的强大!) ??? ps:如果你是vim新手,希望你能边看边操作,如果你在windows环境,你可以装一个

vim使用指北 ---- Learning the vi and Vim Editors 读书 笔记

vi/vim作为liux系统下最强大,最流行的文本编辑器之一.边看<Learning the vi and vim Editor>边学习vim,顺便做写简单的笔记,供以后查询. 没看这本书之前,也经常使用过vim编辑一些简单文件之类的,会一些基本简单的命令.但看书的过程中,发现很多以前从没用过的,操作起来简单的命令,还是令人精神振奋的,vim还可以这样用!!!! Simple Editing  ----- 介绍一些基本的vi/vim操作命令 Moving Aound in a Hurry  

Generating Fortran 90 dependencies for Automake

GNU Autotools can not only handle making (compiling and linking), distributing, transplanting source code for different platforms, but can also track file dependencies hence reduce redundant compiling. This property is by default enabled for C/C++ pr

Vim tips——Working with external commands

A common sequence of events when editing files is to make a change and then need to test by executing the file you edited in a shell. If you're using vim, you could suspend your session (ctrl-Z), and then run the command in your shell. That's a lot o