People
Activity
    Yousef Shanawany
    @AskYous
    I don't have it
    Jens Fischer
    @Gama11
    then I'm not sure where that could be from, the search exclude filters are a combination of files.exclude and search.exclude
    Yousef Shanawany
    @AskYous
    image.png
    That's my user settings
    Jens Fischer
    @Gama11
    and that one is not in the defaults
    Yousef Shanawany
    @AskYous
    image.png
    That's my workspace settings
    maybe it's that **.**.js.map
    Ah, that's what it was
    Thanks
    Jens Fischer
    @Gama11
    right, that would probably need to be **/*.js.map to be valid
    Yousef Shanawany
    @AskYous
    Cool. Thanks @Gama11
    matrixbot
    @matrixbot
    radix hi all, does anyone know what setting affects the documentation popup when typing in code in typescript mode?
    Wellington Rodriguez
    @wrod7
    can someone help me get // @ts-check on js files? I want to use it on my node project, do I need to use a tsconfig in order for it to work? do I need tslint enabled?
    Wellington Rodriguez
    @wrod7
    alt
    whats reporting the problems on the botom? eslint?
    Evan Brodie
    @ecbrodie
    Hi. Does anyone know how to search keybindings by pressing the set of keys that I want to search for? This is a feature in at least the JetBrains/IntelliJ IDE suite and would make my ability to customize my keymaps much easier. Thank you.
    Wellington Rodriguez
    @wrod7
    blob
    @ecbrodie you can type the shortcut to search:
    QuantumHive
    @QuantumHive
    hi, is it possible to run build tasks (ctrl+shift+b) on npm packages (output npm run build)?
    so if i have a build scripts defined in packages.json
    Jens Hausdorf
    @jens1o
    why do you need that?
    but in theory you can define your own build task
    which executes task on dependencies
    QuantumHive
    @QuantumHive
    suppose i have the following in my package.json: { "scripts": {"build": "webpack"} } with webpack installed globally, when I run npm run build, webpack is run
    but when i do ctrl+shift+b, i get the output that npm run build is not recognized
    there is not particular reason why i need this, just playing around with visual code
    QuantumHive
    @QuantumHive
    Just wondering if this is a bug, because the former works and the latter not, might this be deliberately so?
    Kristupas
    @KristupasSavickas
    Can I use the new "runner" setting in my tasks.json with the c_cpp extensoin, or does it need to be updated?
    Kuo-tung Kao
    @ya790206
    When focus in terminal, the focus dones't change when running command, "workbench.action.navigateUp". I bind command "workbench.action.navigateUp" with alt-k. alk-k works on other panel but terminal panel. How to solve it?
    Evan Brodie
    @ecbrodie
    @wrod7 thank you for the tip. It would be nice if VSCode supported the ability to search by actually pressing the modifier keys (ie, I press CMD and it recognizes the CMD press instead of having to type C-M-D). I'll check if that's reported as an Issue on Github.
    Stavros Kefaleas
    @skiabox
    Hello guys
    I can’t run my task
    I get the following
    Failed to launch external program tsc -w -p ..
    spawn tsc ENOENT
    tasks.json :
    {
        // See https://go.microsoft.com/fwlink/?LinkId=733558
        // for the documentation about the tasks.json format
        "version": "0.1.0",
        "command": "tsc",
        "isShellCommand": true,
        "args": ["-w", "-p", "."],
        "showOutput": "silent",
        "isBackground": true,
        "problemMatcher": "$tsc"
    }
    operating system is mac os
    Ben Creasy
    @jcrben
    spent a couple hours trying to figure out why I couldn't select an environment... (wanted to switch from nodejs to PHP) turns out it's because you can't do that when you have a launch.json file already defined :smile: - newbie pain point
    Eric Amodio
    @eamodio
    Does anyone have any pointers/instructions on how to profile a vscode extension? (memory and cpu)
    Ben Creasy
    @jcrben
    plugging Microsoft/vscode#15611 for the June plan... would be really nice. disabling extensions like jshint repetitively is getting annoying
    Fanie Reynders
    @faniereynders
    hello friends!
    can anyone tell me if VSCode calls into the .NET Core CLI to make the .NET Core tooling light up?
    Alex
    @whitecolor
    Is it possible to disable import checking in JS files, but leave enabled other checks?
    Pratyush Mohapatra
    @Ativerc
    VS Code wants to access my private SSH keys. I know its for accessing my remote but why does it need that?
    bremner
    @bremner
    @Ativerc probably checking git status for changes in the remote
    Pratyush Mohapatra
    @Ativerc
    @bremmer thanks... so it can push/pull changes for me. Isn't it bad to give access to private SSH keys though?
    Pratyush Mohapatra
    @Ativerc
    Is possible to make VSCode stop asking for access?
    bremner
    @bremner
    @Ativerc do you not want to use the git integration in VSCode? if so, I guess it might be configurable.
    or maybe you can only turn off the push/pull support. I wouldn't know how though.