File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,6 @@ export class FileEditorJumper extends CodeJumper {
5555
5656 getCurrentPosition ( ) : IGlobalPosition {
5757 let position = this . editor . editor . getCursorPosition ( ) ;
58- console . log ( 'file path: ' , this . editor . context . path ) ;
5958 return {
6059 editor_index : null ,
6160 line : position . line ,
Original file line number Diff line number Diff line change @@ -34,6 +34,11 @@ export const jumpToIcon = new LabIcon({
3434 svgstr : jumpToSvg
3535} ) ;
3636
37+ const jumpBackIcon = new LabIcon ( {
38+ name : 'lsp:jump-back' ,
39+ svgstr : jumpToSvg . replace ( 'jp-icon3' , 'lsp-icon-flip-x jp-icon3' )
40+ } ) ;
41+
3742const FEATURE_ID = PLUGIN_ID + ':jump_to' ;
3843
3944export class CMJumpToDefinition extends CodeMirrorIntegration {
@@ -254,7 +259,7 @@ const COMMANDS: IFeatureCommand[] = [
254259 } ,
255260 is_enabled : ( { connection } ) => connection . isDefinitionSupported ( ) ,
256261 label : 'Jump back' ,
257- icon : jumpToIcon ,
262+ icon : jumpBackIcon ,
258263 // do not attach to any of the context menus
259264 attach_to : new Set < CommandEntryPoint > ( )
260265 }
Original file line number Diff line number Diff line change 88.lsp-document-locator span : not (: last-child )::after {
99 content : ' > ' ;
1010}
11+
12+ .lsp-icon-flip-x {
13+ transform : scaleX (-1 );
14+ transform-origin : center center;
15+ }
You can’t perform that action at this time.
0 commit comments