목록Plugin (2)
일상에서 멍때리기
ctags와 함께 vim유저에게 많은 사랑을 받고 있는 툴 cscope입니다. 저는 여지껏 cscope -R 을 사용해서 아주 일부적인 기능만을 사용하고 있었습니다. 그러던중 '리눅스 유닉스 필수유틸리티' 책을 읽다 내용이 있어 포스팅을 합니다. cscope가 없다면 cscope를 설치 해주시기 바랍니다. 우선 cscope.out파일을 만들기 위한 간단한 스크립트입니다 . #!/bin/bash rm -rf cscope.out cscope.files find . \( -name '*.c' -o -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.s' -o -name '*.S' \) -print > cscope.files cscope -i cscope.fil..
description The "Tag List" plugin is a source code browser plugin for Vim and provides an overview of the structure of source code files and allows you to efficiently browse through source code files for different programming languages. download http://vim.sourceforge.net/scripts/script.php?script_id=273 위 사이트에서 최신버전을 다운받도록 한다. Install - root권한이 없거나 한 계정에서 사용할 때 : ~/.vim/plugin/taglist.vim - roo..