diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml new file mode 100644 index 0000000..02cb5ae --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,10 @@ +name: "Spell Check" +on: [pull_request] + +jobs: + typos: + name: Spell Check with Typos + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: crate-ci/typos@v1.13.10 diff --git a/man/man1/fzf.1 b/man/man1/fzf.1 index f2dbcfe..6d6d49b 100644 --- a/man/man1/fzf.1 +++ b/man/man1/fzf.1 @@ -1145,7 +1145,7 @@ set, otherwise with \fBsh -c\fR, so in this case make sure that the command is POSIX-compliant. \fBbecome(...)\fR action is similar to \fBexecute(...)\fR, but it replaces the -current fzf process with the specifed command using \fBexecve(2)\fR system +current fzf process with the specified command using \fBexecve(2)\fR system call. \fBfzf --bind "enter:become(vim {})"\fR diff --git a/src/terminal.go b/src/terminal.go index ebb4888..2140037 100644 --- a/src/terminal.go +++ b/src/terminal.go @@ -3288,7 +3288,7 @@ func (t *Terminal) Loop() { break } - // Prevew scrollbar dragging + // Preview scrollbar dragging headerLines := t.previewOpts.headerLines pbarDragging = me.Down && (pbarDragging || clicked && t.hasPreviewWindow() && my >= t.pwindow.Top()+headerLines && my < t.pwindow.Top()+t.pwindow.Height() && mx == t.pwindow.Left()+t.pwindow.Width()) if pbarDragging { diff --git a/src/util/util_test.go b/src/util/util_test.go index 534eeb7..27e7a04 100644 --- a/src/util/util_test.go +++ b/src/util/util_test.go @@ -70,7 +70,7 @@ func TestMin32(t *testing.T) { } } -func TestContrain(t *testing.T) { +func TestConstrain(t *testing.T) { if Constrain(-3, -1, 3) != -1 { t.Error("Expected", -1) } @@ -83,7 +83,7 @@ func TestContrain(t *testing.T) { } } -func TestContrain32(t *testing.T) { +func TestConstrain32(t *testing.T) { if Constrain32(-3, -1, 3) != -1 { t.Error("Expected", -1) } diff --git a/typos.toml b/typos.toml new file mode 100644 index 0000000..19f64ad --- /dev/null +++ b/typos.toml @@ -0,0 +1,6 @@ +# See https://github.com/crate-ci/typos/blob/master/docs/reference.md to configure typos +[default.extend-words] +ba = "ba" +fo = "fo" +enew = "enew" +tabe = "tabe"