Terminal

Results 169 comments of Terminal

Ironing out some bugs, but wanted to demonstrate what I am working on https://user-images.githubusercontent.com/32599364/214732635-79b0b194-9c67-4e5f-b634-69ceeb5a82ad.mp4

This is a issue known issue https://github.com/ikatyang/tree-sitter-yaml/issues/36 You can enclose the template syntax in single quotes as a workaround

Is the settings not working for you? ```json "assistant": { "default_open_ai_model": "gpt-4-1106-preview" }, ```

@mrnugget @Imgkl From a performance perspective and reducing imports. This manual method I believe is faster ```rust fn trim_consecutive_whitespaces(input: &str) -> String { let mut result = String::with_capacity(input.len()); let mut...

Here is the code used in my testing 100_000 iterations Regex method took: 979.481709ms Manual method took: 162.163583ms Manual method two took: 459.505292ms 1 iteration Regex method took: 2.933667ms Manual...

@Imgkl Can you update the code to use ? ```rust fn trim_consecutive_whitespaces_manual(input: &str) -> String { let mut result = String::with_capacity(input.len()); let mut last_char_was_whitespace = false; for char in input.trim().chars()...

I've thought about this, and it only really makes sense if Sublime had Ghost text support. Come on HQ :( Without it, I would expect the completion popup to reappears...

Copilot has Advanced configurations. Here we can see that it checks the config setting of path `advanced.authProvider` It looks for the value `github-enterprise`, if it matches it gets the value...

I think we can have it at both locations. Main settings and project level settings. I am working to update this today as I start testing. I think it is...

@raffeyang I've not fully tested but I believe this is already supported Just add to your settings ```json { "command": [ "${node_bin}", "${server_path}", "--stdio" ], "schemes": [ "file", "buffer", "res"...