File tree Expand file tree Collapse file tree 2 files changed +33
-7
lines changed Expand file tree Collapse file tree 2 files changed +33
-7
lines changed Original file line number Diff line number Diff line change 10
10
" Commands Applying changes Essential commands " ,
11
11
" $ History M Remote <c-s> Stage all <c-r> Refresh " ,
12
12
" A Cherry Pick m Merge K Untrack <cr> Go to file " ,
13
- " b Branch P Push s Stage <tab> Toggle " ,
14
- " B Bisect p Pull S Stage unstaged " ,
13
+ " b Branch p Pull s Stage <tab> Toggle " ,
14
+ " B Bisect P Push S Stage unstaged " ,
15
15
" c Commit Q Command u Unstage " ,
16
16
" d Diff r Rebase U Unstage all " ,
17
17
" f Fetch t Tag x Discard " ,
18
- " I Init v Revert " ,
19
- " i Ignore w Worktree " ,
20
- " l Log X Reset " ,
21
- " Z Stash "
18
+ " i Ignore v Revert " ,
19
+ " I Init w Worktree " ,
20
+ " L Margin X Reset " ,
21
+ " l Log Z Stash "
22
22
]
23
23
end
24
24
25
- %w[ $ A b B c d f i I l M m P p r t v w X Z ] . each { include_examples "interaction" , _1 }
25
+ %w[ $ A b B c d f i I l L M m P p r t v w X Z ] . each { include_examples "interaction" , _1 }
26
26
end
Original file line number Diff line number Diff line change
1
+ # frozen_string_literal: true
2
+
3
+ require "spec_helper"
4
+
5
+ RSpec . describe "Margin Popup" , :git , :nvim , :popup do # rubocop:disable RSpec/EmptyExampleGroup
6
+ before { nvim . keys ( "L" ) }
7
+
8
+ let ( :view ) do
9
+ [
10
+ " Arguments " ,
11
+ " -n Limit number of commits (--max-count=256) " ,
12
+ " -o Order commits by (--[topo|author-date|date]-order) " ,
13
+ " -g Show graph (--graph) " ,
14
+ " -c Show graph in color (--color) " ,
15
+ " -d Show refnames (--decorate) " ,
16
+ " " ,
17
+ " Refresh Margin " ,
18
+ " g buffer L toggle visibility " ,
19
+ " l cycle style " ,
20
+ " d toggle details " ,
21
+ " x toggle shortstat "
22
+ ]
23
+ end
24
+
25
+ %w[ L l d ] . each { include_examples "interaction" , _1 }
26
+ end
You can’t perform that action at this time.
0 commit comments