-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add perl formatting support using Perltidy
Signed-off-by: liuyehcf <[email protected]>
- Loading branch information
Showing
5 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
" Copyright 2023 Google Inc. All rights reserved. | ||
" | ||
" Licensed under the Apache License, Version 2.0 (the "License"); | ||
" you may not use this file except in compliance with the License. | ||
" You may obtain a copy of the License at | ||
" | ||
" http://www.apache.org/licenses/LICENSE-2.0 | ||
" | ||
" Unless required by applicable law or agreed to in writing, software | ||
" distributed under the License is distributed on an "AS IS" BASIS, | ||
" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
" See the License for the specific language governing permissions and | ||
" limitations under the License. | ||
|
||
let s:plugin = maktaba#plugin#Get('codefmt') | ||
|
||
|
||
"" | ||
" @private | ||
" Formatter: perltidy | ||
function! codefmt#perltidy#GetFormatter() abort | ||
let l:formatter = { | ||
\ 'name': 'perltidy', | ||
\ 'setup_instructions': 'Install perltidy ' . | ||
\ '(https://perltidy.sourceforge.net/INSTALL.html).'} | ||
|
||
function l:formatter.IsAvailable() abort | ||
return executable(s:plugin.Flag('perltidy_executable')) | ||
endfunction | ||
|
||
function l:formatter.AppliesToBuffer() abort | ||
return codefmt#formatterhelpers#FiletypeMatches(&filetype, 'perl') | ||
endfunction | ||
|
||
"" | ||
" Reformat the current buffer with perltidy or the binary named in | ||
" @flag(perltidy_executable), only targeting the range between {startline} and | ||
" {endline}. | ||
" @throws ShellError | ||
function l:formatter.FormatRange(startline, endline) abort | ||
let l:executable = s:plugin.Flag('perltidy_executable') | ||
|
||
call maktaba#ensure#IsNumber(a:startline) | ||
call maktaba#ensure#IsNumber(a:endline) | ||
|
||
" Perltidy does not support range formatting. | ||
call codefmt#formatterhelpers#AttemptFakeRangeFormatting( | ||
\ a:startline, | ||
\ a:endline, | ||
\ [l:executable, '-']) | ||
endfunction | ||
|
||
return l:formatter | ||
endfunction |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
Perltidy is a linter and formatter for perl. | ||
If you aren't familiar with basic codefmt usage yet, see main.vroom first. | ||
|
||
First, set up the vroom environment. | ||
|
||
:source $VROOMDIR/setupvroom.vim | ||
|
||
:let g:repeat_calls = [] | ||
:function FakeRepeat(...)<CR> | ||
| call add(g:repeat_calls, a:000)<CR> | ||
:endfunction | ||
:call maktaba#test#Override('repeat#set', 'FakeRepeat') | ||
|
||
:call codefmt#SetWhetherToPerformIsAvailableChecksForTesting(0) | ||
|
||
By default, the perltidy executable is called. To use this plugin, perltidy | ||
must be installed on your system. (But not for testing; vroom intercepts | ||
system calls.) | ||
:FormatCode perltidy | ||
! perltidy .* | ||
|
||
|
||
|
||
The name and path of the Perltidy executable can be configured with a flag: | ||
:Glaive codefmt perltidy_executable=some_other_program | ||
:FormatCode perltidy | ||
! some_other_program .* | ||
:Glaive codefmt perltidy_executable=perltidy | ||
|
||
|
||
|
||
Perltidy does basic whitespace management. | ||
% my @nums = (1 .. 5);<CR> | ||
:FormatCode perltidy | ||
! perltidy .* | ||
$ ========= | ||
$ my @nums = ( 1 .. 5 ); | ||
my @nums = ( 1 .. 5 ); |