Skip to content

Commit

Permalink
docs: consistent quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
polyzen authored and lewis6991 committed Jun 14, 2023
1 parent f1c5aa1 commit 4f8f66d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ require('gitsigns').setup{
-- Actions
map('n', '<leader>hs', gs.stage_hunk)
map('n', '<leader>hr', gs.reset_hunk)
map('v', '<leader>hs', function() gs.stage_hunk {vim.fn.line("."), vim.fn.line("v")} end)
map('v', '<leader>hr', function() gs.reset_hunk {vim.fn.line("."), vim.fn.line("v")} end)
map('v', '<leader>hs', function() gs.stage_hunk {vim.fn.line('.'), vim.fn.line('v')} end)
map('v', '<leader>hr', function() gs.reset_hunk {vim.fn.line('.'), vim.fn.line('v')} end)
map('n', '<leader>hS', gs.stage_buffer)
map('n', '<leader>hu', gs.undo_stage_hunk)
map('n', '<leader>hR', gs.reset_buffer)
Expand Down Expand Up @@ -272,7 +272,7 @@ This means the signs placed in the buffer reflect the changes introduced by that
Null-ls can provide code actions from Gitsigns. To setup:

```lua
local null_ls = require("null-ls")
local null_ls = require('null-ls')

null_ls.setup {
sources = {
Expand Down

0 comments on commit 4f8f66d

Please sign in to comment.