Skip to content

Commit

Permalink
fix: address linter messages
Browse files Browse the repository at this point in the history
  • Loading branch information
kndndrj committed Apr 23, 2024
1 parent 55a16ec commit f3fae59
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:
pip install mdformat-gfm
- name: Markdown Style Check
run: |
mdformat --number --wrap 80 --check README.md ARCHITECTURE.md
mdformat --number --check README.md ARCHITECTURE.md
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,6 @@ Here are a few steps to quickly get started:
| `require("dbee").api.ui.result_page_last()` | Go to the last page | E |
| `require("dbee").api.ui.result_page_first()` | Go to the first page | F |


- Once in the "result" buffer, you can yank the results with the following keys:

- `yaj` yank current row as json (or row range in visual mode)
Expand Down
4 changes: 2 additions & 2 deletions lua/dbee/api/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,12 @@ end

--- Go to last page in results UI and display it.
function ui.result_page_last()
entry.get_ui().result:page_last()
state.result():page_last()
end

--- Go to first page in results UI and display it.
function ui.result_page_first()
entry.get_ui().result:page_first()
state.result():page_first()
end

--- Open the result UI.
Expand Down

0 comments on commit f3fae59

Please sign in to comment.