Skip to content

Commit e2df0d2

Browse files
authored
Merge pull request #304 from krvajal/feature/disable-warnings
Feature/disable-warnings
2 parents 589bb81 + 8af8962 commit e2df0d2

File tree

6 files changed

+73
-45
lines changed

6 files changed

+73
-45
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [2.6.2]
11+
12+
### Added
13+
14+
- Adds Don't Show Again option when failing to spawn `fortls`, Fortran Intellisense
15+
pop-up has already been removed
16+
([#303](https://github.com/krvajal/vscode-fortran-support/issues/303))
17+
1018
## [2.6.1]
1119

1220
### Fixed
@@ -336,7 +344,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
336344

337345
- Initial release
338346

339-
[unreleased]: https://github.com/krvajal/vscode-fortran-support/compare/v2.6.1...HEAD
347+
[unreleased]: https://github.com/krvajal/vscode-fortran-support/compare/v2.6.2...HEAD
348+
[2.6.2]: https://github.com/krvajal/vscode-fortran-support/compare/v2.6.1...v2.6.2
340349
[2.6.1]: https://github.com/krvajal/vscode-fortran-support/compare/v2.6.0...v2.6.1
341350
[2.6.0]: https://github.com/krvajal/vscode-fortran-support/compare/v2.5.0...v2.6.0
342351
[2.5.0]: https://github.com/krvajal/vscode-fortran-support/compare/v2.4.3...v2.5.0

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "linter-gfortran",
33
"displayName": "Modern Fortran",
44
"description": "Modern Fortran language support, including syntax highlighting and error detection.",
5-
"version": "2.6.1",
5+
"version": "2.6.2",
66
"publisher": "krvajalm",
77
"license": "MIT",
88
"author": {
@@ -221,6 +221,11 @@
221221
"uppercase"
222222
],
223223
"description": "Specify the word case to use when suggesting autocomplete options (One of 'lowercase' or 'upercase')"
224+
},
225+
"fortran.ignoreWarning.fortls": {
226+
"type": "boolean",
227+
"default": false,
228+
"description": "Hide error message when the fortran-language-server is not detected"
224229
}
225230
}
226231
},

src/extension.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,18 @@ export function activate(context: vscode.ExtensionContext) {
7171
enable hover, peeking, gotos and many more.
7272
For a full list of features the language server adds see:
7373
https://github.com/hansec/fortran-language-server`;
74-
promptForMissingTool(LANG_SERVER_TOOL_ID, msg, 'Python', loggingService);
74+
75+
if (!extensionConfig.get('ignoreWarning.fortls')) {
76+
promptForMissingTool(
77+
LANG_SERVER_TOOL_ID,
78+
msg,
79+
'Python',
80+
['Install', "Don't Show Again"],
81+
loggingService,
82+
() => {
83+
extensionConfig.update('ignoreWarning.fortls', true);
84+
}
85+
);
86+
}
7587
}
7688
}

src/features/formatting-provider.ts

+13-17
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,14 @@ export class FortranFormattingProvider implements vscode.DocumentFormattingEditP
4545

4646
const formatterName = 'fprettify';
4747
const formatterPath: string = this.getFormatterPath();
48-
// If no formatter path is present check that formatter is present in $PATH
49-
if (!formatterPath) {
50-
if (!which.sync(formatterName, { nothrow: true })) {
51-
this.logger.logWarning(`Formatter: ${formatterName} not detected in your system.
48+
const formatter: string = path.join(formatterPath, formatterName);
49+
// If no formatter is detected try and install it
50+
if (!which.sync(formatter, { nothrow: true })) {
51+
this.logger.logWarning(`Formatter: ${formatterName} not detected in your system.
5252
Attempting to install now.`);
53-
const msg = `Installing ${formatterName} through pip with --user option`;
54-
promptForMissingTool(formatterName, msg, 'Python');
55-
}
53+
const msg = `Installing ${formatterName} through pip with --user option`;
54+
promptForMissingTool(formatterName, msg, 'Python', ['Install'], this.logger);
5655
}
57-
const formatter: string = path.join(formatterPath, formatterName);
5856

5957
const args: string[] = [document.fileName, ...this.getFormatterArgs()];
6058
// args.push('--silent'); // TODO: pass?
@@ -86,16 +84,14 @@ export class FortranFormattingProvider implements vscode.DocumentFormattingEditP
8684
private doFormatFindent(document: vscode.TextDocument) {
8785
const formatterName = 'findent';
8886
const formatterPath: string = this.getFormatterPath();
89-
// If no formatter path is present check that formatter is present in $PATH
90-
if (!formatterPath) {
91-
if (!which.sync(formatterName, { nothrow: true })) {
92-
this.logger.logWarning(`Formatter: ${formatterName} not detected in your system.
93-
Attempting to install now.`);
94-
const msg = `Installing ${formatterName} through pip with --user option`;
95-
promptForMissingTool(formatterName, msg, 'Python');
96-
}
97-
}
9887
let formatter: string = path.join(formatterPath, formatterName);
88+
// If no formatter is detected try and install it
89+
if (!which.sync(formatter, { nothrow: true })) {
90+
this.logger.logWarning(`Formatter: ${formatterName} not detected in your system.
91+
Attempting to install now.`);
92+
const msg = `Installing ${formatterName} through pip with --user option`;
93+
promptForMissingTool(formatterName, msg, 'Python', ['Install'], this.logger);
94+
}
9995

10096
// Annoyingly findent only outputs to a file and not to a stream so
10197
// let us go and create a temporary file

src/lib/tools.ts

+29-23
Original file line numberDiff line numberDiff line change
@@ -47,39 +47,43 @@ export function FortranDocumentSelector(folder?: vscode.WorkspaceFolder) {
4747
* e.g 'hansec.fortran-ls'
4848
*
4949
* @param tool name of the tool e.g. fortran-language-server
50-
* @param msg optional message for installing said package
50+
* @param msg message for installing said package
5151
* @param toolType type of tool, supports `Python` (through pip) and 'VSExt'
52+
* @param opts options for the prompt. "Install" and "Don't Show Again" are coded
53+
* @param logger log channel output
54+
* @param action a void function for an action to perform when "Don't Show Again" is pressed
5255
*/
5356
export function promptForMissingTool(
5457
tool: string,
5558
msg: string,
5659
toolType: string,
57-
logger?: LoggingService
60+
opts: string[],
61+
logger?: LoggingService,
62+
action?: () => void
5863
) {
5964
const items = ['Install'];
60-
return new Promise((resolve, reject) => {
61-
resolve(
62-
vscode.window.showInformationMessage(msg, ...items).then(selected => {
63-
if (selected === 'Install') {
64-
switch (toolType) {
65-
case 'Python':
66-
installPythonTool(tool, logger);
67-
break;
65+
return vscode.window.showInformationMessage(msg, ...opts).then(selected => {
66+
if (selected === 'Install') {
67+
switch (toolType) {
68+
case 'Python':
69+
installPythonTool(tool, logger);
70+
break;
6871

69-
case 'VSExt':
70-
logger.logInfo(`Installing VS Marketplace Extension with id: ${tool}`);
71-
vscode.commands.executeCommand('extension.open', tool);
72-
vscode.commands.executeCommand('workbench.extensions.installExtension', tool);
73-
logger.logInfo(`Extension ${tool} successfully installed`);
74-
break;
72+
case 'VSExt':
73+
logger.logInfo(`Installing VS Marketplace Extension with id: ${tool}`);
74+
vscode.commands.executeCommand('extension.open', tool);
75+
vscode.commands.executeCommand('workbench.extensions.installExtension', tool);
76+
logger.logInfo(`Extension ${tool} successfully installed`);
77+
break;
7578

76-
default:
77-
logger.logError(`Failed to install tool: ${tool}`);
78-
break;
79-
}
80-
}
81-
})
82-
);
79+
default:
80+
logger.logError(`Failed to install tool: ${tool}`);
81+
vscode.window.showErrorMessage(`Failed to install tool: ${tool}`);
82+
break;
83+
}
84+
} else if (selected === "Don't Show Again") {
85+
action();
86+
}
8387
});
8488
}
8589

@@ -100,6 +104,8 @@ export function installPythonTool(pyPackage: string, logger?: LoggingService) {
100104
logger.logError(
101105
`Python package ${pyPackage} failed to install with code: ${code}, signal: ${signal}`
102106
);
107+
} else {
108+
logger.logInfo(`Successfully installed ${pyPackage}.`);
103109
}
104110
});
105111
installProcess.on('error', err => {

0 commit comments

Comments
 (0)