Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
ubaldot committed Sep 12, 2024
1 parent 54390b0 commit ffd8ed7
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions lib/vim9_convert_functions.vim
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,8 @@ vim9script

export def TransformBuffer(...bufnr: list<string>)

var fix_let = false
var fix_asl = false

if exists('g:vim9_conversion_aid_fix_let')
fix_let = g:vim9_conversion_aid_fix_let
endif
if exists('g:vim9_conversion_aid_fix_asl')
fix_asl = g:vim9_conversion_aid_fix_asl
endif
var fix_let = get(g:, 'vim9_conversion_aid_fix_let', false)
var fix_asl = get(g:, 'vim9_conversion_aid_fix_asl', false)

var source_bufnr = bufnr('%')
if empty(source_bufnr)
Expand Down

0 comments on commit ffd8ed7

Please sign in to comment.