bash-language-server
Advanced tools
Comparing version 4.10.2 to 4.10.3
# Bash Language Server | ||
## 4.10.3 | ||
- Use cat as man pager https://github.com/bash-lsp/bash-language-server/pull/909 | ||
## 4.10.2 | ||
- Bump semver development dependency causing false positive distributions security warnings https://github.com/bash-lsp/bash-language-server/pull/905 | ||
## 4.10.1 | ||
@@ -4,0 +13,0 @@ |
@@ -6,3 +6,3 @@ /** | ||
/** | ||
* Get documentation for the given word by usingZZ help and man. | ||
* Get documentation for the given word by using help and man. | ||
*/ | ||
@@ -9,0 +9,0 @@ export declare function getShellDocumentationWithoutCache({ word, }: { |
@@ -58,3 +58,3 @@ "use strict"; | ||
/** | ||
* Get documentation for the given word by usingZZ help and man. | ||
* Get documentation for the given word by using help and man. | ||
*/ | ||
@@ -74,3 +74,3 @@ function getShellDocumentationWithoutCache({ word, }) { | ||
// for completions. | ||
{ type: 'man', command: `man ${word} | col -bx` }, | ||
{ type: 'man', command: `man -P cat ${word} | col -bx` }, | ||
]; | ||
@@ -77,0 +77,0 @@ for (const { type, command } of DOCUMENTATION_COMMANDS) { |
@@ -6,3 +6,3 @@ { | ||
"license": "MIT", | ||
"version": "4.10.2", | ||
"version": "4.10.3", | ||
"main": "./out/server.js", | ||
@@ -9,0 +9,0 @@ "typings": "./out/server.d.ts", |
@@ -56,3 +56,3 @@ import * as ChildProcess from 'child_process' | ||
/** | ||
* Get documentation for the given word by usingZZ help and man. | ||
* Get documentation for the given word by using help and man. | ||
*/ | ||
@@ -77,3 +77,3 @@ export async function getShellDocumentationWithoutCache({ | ||
// for completions. | ||
{ type: 'man', command: `man ${word} | col -bx` }, | ||
{ type: 'man', command: `man -P cat ${word} | col -bx` }, | ||
] | ||
@@ -80,0 +80,0 @@ |
Sorry, the diff of this file is not supported yet
1009764