aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/labeler.yml52
-rw-r--r--src/nvim/testdir/test_cursor_func.vim8
2 files changed, 56 insertions, 4 deletions
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
index 17dbf8704d..4940d6bb58 100644
--- a/.github/workflows/labeler.yml
+++ b/.github/workflows/labeler.yml
@@ -51,12 +51,64 @@ jobs:
})
const label_names = labels.map(label => label.name)
+ if (label_names.includes('api')) {
+ reviewers.push("bfredl")
+ reviewers.push("gpanders")
+ reviewers.push("muniter")
+ }
+
if (label_names.includes('ci')) {
reviewers.push("jamessan")
}
+ if (label_names.includes('diagnostic')) {
+ reviewers.push("gpanders")
+ }
+
+ if (label_names.includes('distribution')) {
+ reviewers.push("jamessan")
+ }
+
+ if (label_names.includes('documentation')) {
+ reviewers.push("clason")
+ }
+
+ if (label_names.includes('extmarks')) {
+ reviewers.push("bfredl")
+ }
+
+ if (label_names.includes('filetype')) {
+ reviewers.push("clason")
+ reviewers.push("gpanders")
+ }
+
+ if (label_names.includes('gui')) {
+ reviewers.push("glacambre")
+ reviewers.push("smolck")
+ }
+
+ if (label_names.includes('lsp')) {
+ reviewers.push("mfussenegger")
+ reviewers.push("mjlbach")
+ }
+
+ if (label_names.includes('treesitter')) {
+ reviewers.push("bfredl")
+ reviewers.push("vigoux")
+ }
+
+ if (label_names.includes('typo')) {
+ reviewers.push("dundargoc")
+ }
+
+ if (label_names.includes('ui')) {
+ reviewers.push("bfredl")
+ }
+
if (label_names.includes('vim-patch')) {
+ reviewers.push("janlazo")
reviewers.push("seandewar")
+ reviewers.push("zeertzjq")
}
const index = reviewers.indexOf(context.actor);
diff --git a/src/nvim/testdir/test_cursor_func.vim b/src/nvim/testdir/test_cursor_func.vim
index f2ffd50726..47e74a24d6 100644
--- a/src/nvim/testdir/test_cursor_func.vim
+++ b/src/nvim/testdir/test_cursor_func.vim
@@ -75,7 +75,6 @@ func Test_curswant_with_cursorline()
endfunc
func Test_screenpos()
- throw 'skipped: TODO: '
rightbelow new
rightbelow 20vsplit
call setline(1, ["\tsome text", "long wrapping line here", "next line"])
@@ -103,9 +102,10 @@ func Test_screenpos()
bwipe!
call assert_equal({'col': 1, 'row': 1, 'endcol': 1, 'curscol': 1}, screenpos(win_getid(), 1, 1))
- nmenu WinBar.TEST :
- call assert_equal({'col': 1, 'row': 2, 'endcol': 1, 'curscol': 1}, screenpos(win_getid(), 1, 1))
- nunmenu WinBar.TEST
+ " Needs WinBar
+ " nmenu WinBar.TEST :
+ " call assert_equal({'col': 1, 'row': 2, 'endcol': 1, 'curscol': 1}, screenpos(win_getid(), 1, 1))
+ " nunmenu WinBar.TEST
endfunc
func Test_screenpos_number()