@@ -31,7 +31,6 @@ import { IThemeService } from 'vs/platform/theme/common/themeService';
31
31
import { attachKeybindingLabelStyler } from 'vs/platform/theme/common/styler' ;
32
32
import { ContextKeyExpression , IContextKeyService } from 'vs/platform/contextkey/common/contextkey' ;
33
33
import { TerminalContextKeys } from 'vs/workbench/contrib/terminal/common/terminalContextKey' ;
34
- import { CONTEXT_DEBUGGERS_AVAILABLE } from 'vs/workbench/contrib/debug/common/debug' ;
35
34
36
35
const $ = dom . $ ;
37
36
@@ -50,9 +49,11 @@ const openFileOrFolderMacOnly: WatermarkEntry = { text: nls.localize('watermark.
50
49
const openRecent : WatermarkEntry = { text : nls . localize ( 'watermark.openRecent' , "Open Recent" ) , id : 'workbench.action.openRecent' } ;
51
50
const newUntitledFile : WatermarkEntry = { text : nls . localize ( 'watermark.newUntitledFile' , "New Untitled File" ) , id : NEW_UNTITLED_FILE_COMMAND_ID } ;
52
51
const newUntitledFileMacOnly : WatermarkEntry = Object . assign ( { mac : true } , newUntitledFile ) ;
53
- const toggleTerminal : WatermarkEntry = { text : nls . localize ( { key : 'watermark.toggleTerminal' , comment : [ 'toggle is a verb here' ] } , "Toggle Terminal" ) , id : TerminalCommandId . Toggle , when : TerminalContextKeys . processSupported } ;
54
52
const findInFiles : WatermarkEntry = { text : nls . localize ( 'watermark.findInFiles' , "Find in Files" ) , id : FindInFilesActionId } ;
55
- const startDebugging : WatermarkEntry = { text : nls . localize ( 'watermark.startDebugging' , "Start Debugging" ) , id : DEBUG_START_COMMAND_ID , when : CONTEXT_DEBUGGERS_AVAILABLE } ;
53
+ const toggleTerminal : WatermarkEntry = { text : nls . localize ( { key : 'watermark.toggleTerminal' , comment : [ 'toggle is a verb here' ] } , "Toggle Terminal" ) , id : TerminalCommandId . Toggle , when : TerminalContextKeys . processSupported } ;
54
+ const startDebugging : WatermarkEntry = { text : nls . localize ( 'watermark.startDebugging' , "Start Debugging" ) , id : DEBUG_START_COMMAND_ID , when : TerminalContextKeys . processSupported } ;
55
+ const toggleFullscreen : WatermarkEntry = { text : nls . localize ( { key : 'watermark.toggleFullscreen' , comment : [ 'toggle is a verb here' ] } , "Toggle Full Screen" ) , id : 'workbench.action.toggleFullScreen' , when : TerminalContextKeys . processSupported . toNegated ( ) } ;
56
+ const showSettings : WatermarkEntry = { text : nls . localize ( 'watermark.showSettings' , "Show Settings" ) , id : 'workbench.action.openSettings' , when : TerminalContextKeys . processSupported . toNegated ( ) } ;
56
57
57
58
const noFolderEntries = [
58
59
showCommands ,
@@ -68,7 +69,9 @@ const folderEntries = [
68
69
quickAccess ,
69
70
findInFiles ,
70
71
startDebugging ,
71
- toggleTerminal
72
+ toggleTerminal ,
73
+ toggleFullscreen ,
74
+ showSettings
72
75
] ;
73
76
74
77
const WORKBENCH_TIPS_ENABLED_KEY = 'workbench.tips.enabled' ;
0 commit comments