sublimelsp / LSP-typescript

TypeScript, JavaScript support for Sublime LSP plugin
MIT License
135 stars 11 forks source link

Can not autocomplete if attribute starts with "$" #56

Closed jgburet closed 3 years ago

jgburet commented 3 years ago

https://user-images.githubusercontent.com/1304987/117413819-b70a9f00-af16-11eb-9506-24ebee014ac8.mov

Screenshot 2021-05-07 at 09 33 02 Screenshot 2021-05-07 at 09 33 40
import { firefox, FirefoxBrowser, Page } from 'playwright';

async function main(): Promise<void> {
    let browser: FirefoxBrowser;
    browser = await firefox.launch({ headless: false, slowMo: 300 });
    const page = await browser.newPage();

    await page.$$ // pressing `tab` | `enter` will remove the characters of the attribute name after the `.`
}
rchl commented 3 years ago

https://github.com/sublimelsp/LSP/issues/1088