1
+ <!DOCTYPE html>
2
+ <!-- saved from url=(0070)chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/cmdline_frame.html -->
3
+ < html > < head > < meta http-equiv ="Content-Type " content ="text/html; charset=windows-1252 ">
4
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/cmdline_frame.js "> </ script >
5
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/cvimrc_parser.js "> </ script >
6
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/session.js "> </ script >
7
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/utils.js "> </ script >
8
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/dom.js "> </ script >
9
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/hints.js "> </ script >
10
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/bookmarks.js "> </ script >
11
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/keys.js "> </ script >
12
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/clipboard.js "> </ script >
13
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/complete.js "> </ script >
14
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/mappings.js "> </ script >
15
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/find.js "> </ script >
16
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/cursor.js "> </ script >
17
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/status.js "> </ script >
18
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/hud.js "> </ script >
19
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/visual.js "> </ script >
20
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/command.js "> </ script >
21
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/scroll.js "> </ script >
22
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/search.js "> </ script >
23
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/frames.js "> </ script >
24
+ < script src ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/messenger.js "> </ script >
25
+ < link rel ="stylesheet " href ="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/content_scripts/main.css ">
26
+ < style > # cVim-command-bar , # cVim-command-bar-mode , # cVim-command-bar-input , # cVim-command-bar-search-results ,
27
+ .cVim-completion-item , .cVim-completion-item .cVim-full , .cVim-completion-item .cVim-left ,
28
+ .cVim-completion-item .cVim-right {
29
+ font-family : Helvetica, Helvetica Neue, Neue, sans-serif, monospace, Arial;
30
+ font-size : 10pt !important ;
31
+ -webkit-font-smoothing : antialiased !important ;
32
+ }
33
+
34
+ # cVim-command-bar {
35
+ position : fixed;
36
+ z-index : 2147483646 ;
37
+ background-color : # 1b1d1e ;
38
+ color : # bbb ;
39
+ display : none;
40
+ box-sizing : content-box;
41
+ box-shadow : 0 3px 3px rgba (0 , 0 , 0 , 0.4 );
42
+ left : 0 ;
43
+ width : 100% ;
44
+ height : 20px ;
45
+ }
46
+
47
+ # cVim-command-bar-mode {
48
+ display : inline-block;
49
+ vertical-align : middle;
50
+ box-sizing : border-box;
51
+ padding-left : 2px ;
52
+ height : 100% ;
53
+ width : 10px ;
54
+ padding-top : 2px ;
55
+ color : # 888 ;
56
+ }
57
+
58
+ # cVim-command-bar-input {
59
+ background-color : # 1b1d1e ;
60
+ color : # bbb ;
61
+ height : 100% ;
62
+ right : 0 ;
63
+ top : 0 ;
64
+ width : calc (100% - 10px );
65
+ position : absolute;
66
+ }
67
+
68
+ # cVim-command-bar-search-results {
69
+ position : fixed;
70
+ width : 100% ;
71
+ overflow : hidden;
72
+ z-index : 2147483647 ;
73
+ left : 0 ;
74
+ box-shadow : 0 3px 3px rgba (0 , 0 , 0 , 0.4 );
75
+ background-color : # 1c1c1c ;
76
+ }
77
+
78
+ .cVim-completion-item , .cVim-completion-item .cVim-full , .cVim-completion-item .cVim-left , .cVim-completion-item .cVim-right {
79
+ text-overflow : ellipsis;
80
+ padding : 1px ;
81
+ display : inline-block;
82
+ box-sizing : border-box;
83
+ vertical-align : middle;
84
+ overflow : hidden;
85
+ white-space : nowrap;
86
+ }
87
+
88
+ .cVim-completion-item : nth-child (even) {
89
+ background-color : # 1f1f1f ;
90
+ }
91
+
92
+ .cVim-completion-item {
93
+ width : 100% ; left : 0 ;
94
+ color : # bcbcbc ;
95
+ }
96
+
97
+ .cVim-completion-item [active ] {
98
+ width : 100% ; left : 0 ;
99
+ color : # 1b1d1e ;
100
+ background-color : # f1f1f1 ;
101
+ }
102
+
103
+ .cVim-completion-item [active ] span {
104
+ color : # 1b1d1e ;
105
+ }
106
+
107
+ .cVim-completion-item .cVim-left {
108
+ color : # fff ;
109
+ width : 37% ;
110
+ }
111
+
112
+ .cVim-completion-item .cVim-right {
113
+ font-style : italic;
114
+ color : # 888 ;
115
+ width : 57% ;
116
+ }
117
+
118
+
119
+ # cVim-link-container , .cVim-link-hint ,
120
+ # cVim-hud , # cVim-status-bar {
121
+ font-family : Helvetica, Helvetica Neue, Neue, sans-serif, monospace, Arial;
122
+ font-size : 10pt !important ;
123
+ -webkit-font-smoothing : antialiased !important ;
124
+ }
125
+
126
+ # cVim-link-container {
127
+ position : absolute;
128
+ pointer-events : none;
129
+ width : 100% ; left : 0 ;
130
+ height : 100% ; top : 0 ;
131
+ z-index : 2147483647 ;
132
+ }
133
+
134
+ .cVim-link-hint {
135
+ position : absolute;
136
+ color : # 302505 !important ;
137
+ background-color : # ffd76e !important ;
138
+ border-radius : 2px !important ;
139
+ padding : 2px !important ;
140
+ font-size : 8pt !important ;
141
+ font-weight : 500 !important ;
142
+ text-transform : uppercase !important ;
143
+ border : 1px solid # ad810c ;
144
+ display : inline-block !important ;
145
+ vertical-align : middle !important ;
146
+ text-align : center !important ;
147
+ box-shadow : 2px 2px 1px rgba (0 , 0 , 0 , 0.25 ) !important ;
148
+ }
149
+
150
+ .cVim-link-hint_match {
151
+ color : # 777 ;
152
+ text-transform : uppercase !important ;
153
+ }
154
+
155
+
156
+ # cVim-hud {
157
+ background-color : rgba (28 , 28 , 28 , 0.9 );
158
+ position : fixed !important ;
159
+ transition : right 0.2s ease-out;
160
+ z-index : 24724289 ;
161
+ }
162
+
163
+ # cVim-hud span {
164
+ padding : 2px ;
165
+ padding-left : 4px ;
166
+ padding-right : 4px ;
167
+ color : # 8f8f8f ;
168
+ font-size : 10pt ;
169
+ }
170
+
171
+ # cVim-frames-outline {
172
+ position : fixed;
173
+ width : 100% ;
174
+ height : 100% ;
175
+ left : 0 ;
176
+ top : 0 ;
177
+ right : 0 ;
178
+ z-index : 9999999999 ;
179
+ box-sizing : border-box;
180
+ border : 3px solid yellow;
181
+ }
182
+ </ style > </ head >
183
+ < body >
184
+
185
+
186
+ </ body > < div id ="cVim-status-bar " style ="bottom: 0px; "> </ div > < div id ="cVim-command-bar " spellcheck ="false " style ="bottom: 0px; "> < span id ="cVim-command-bar-mode "> </ span > < input type ="text " id ="cVim-command-bar-input "> </ div > < div id ="cVim-command-bar-search-results " style ="bottom: 20px; "> </ div > </ html >
0 commit comments