mirror of
https://github.com/vim-scripts/perl-support.vim.git
synced 2026-03-01 18:23:21 +01:00
- New global variable g:Perl_InsertFileHeader (suppress file description comment for new files). - Two new ex commands: PerlScriptArguments, PerlSwitches - Specifying command line arguments and Perl command line switches improved. - Bugfix: g:Perl_LoadMenus now works. - Bugfix: g:Perl_MapLeader now works. - Bugfix: syntax check under 64-Bit MS-Windows now works. - Some settings moved to the filetype plugin. - Removed superfluous settings from the filetype plugin. - Integration of Make moved into the toolbox. - Minor improvements.
25 lines
922 B
VimL
25 lines
922 B
VimL
"===============================================================================
|
|
"
|
|
" File: qf.vim
|
|
"
|
|
" Description:
|
|
"
|
|
" VIM Version: 7.0+
|
|
" Author: Dr. Fritz Mehner (fgm), mehner.fritz@fh-swf.de
|
|
" Organization: FH Südwestfalen, Iserlohn
|
|
" Version: 1.0
|
|
" Created: 18.02.2012 19:51
|
|
" License: Copyright (c) 2012, Dr. Fritz Mehner
|
|
"===============================================================================
|
|
"
|
|
" Only do this when not done yet for this buffer
|
|
"
|
|
if exists("b:did_PERL_quickfix")
|
|
finish
|
|
endif
|
|
let b:did_PERL_quickfix = 1
|
|
|
|
noremap <buffer> <silent> <LocalLeader>rpss :call perlsupportprofiling#Perl_SmallProfSortInput()<CR>
|
|
noremap <buffer> <silent> <LocalLeader>rpfs :call perlsupportprofiling#Perl_FastProfSortInput()<CR>
|
|
noremap <buffer> <silent> <LocalLeader>rpns :call perlsupportprofiling#Perl_NYTProfSortInput()<CR>
|