File tree Expand file tree Collapse file tree 3 files changed +7
-11
lines changed Expand file tree Collapse file tree 3 files changed +7
-11
lines changed Original file line number Diff line number Diff line change 1414 sudo apt-get install luarocks -y
1515 sudo luarocks install luacheck
1616 - name : Lint
17- run : luacheck lua/ --globals vim
17+ run : luacheck lua/ --globals vim --ignore 4*
Original file line number Diff line number Diff line change 3737
3838function LedgerTui :shutdown ()
3939 self .layout :restore_window_options ()
40- self .layout : close_buffer (self .layout .reports_buf )
41- self .layout : close_buffer (self .layout .help_buf )
42- self .layout : close_buffer (self .layout .hint_buf )
43- self .layout : close_buffer (self .layout .output_buf )
44- self .layout : close_buffer (self .layout .filters_buf )
40+ self .layout . close_buffer (self .layout .reports_buf )
41+ self .layout . close_buffer (self .layout .help_buf )
42+ self .layout . close_buffer (self .layout .hint_buf )
43+ self .layout . close_buffer (self .layout .output_buf )
44+ self .layout . close_buffer (self .layout .filters_buf )
4545 self .running = false
4646end
4747
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ function LedgerTuiLayout.set_buffer_options()
5151end
5252
5353--- @param buffer integer
54- function LedgerTuiLayout : close_buffer (buffer )
54+ function LedgerTuiLayout . close_buffer (buffer )
5555 if buffer == nil then
5656 return
5757 end
@@ -477,10 +477,6 @@ local function focus_reports()
477477 end
478478end
479479
480- function LedgerTuiLayout :focus_reports ()
481- focus_reports ()
482- end
483-
484480local function focus_filters ()
485481 local layout = require (" ledger.tui.layout" ).get ()
486482
You can’t perform that action at this time.
0 commit comments