https://www.dendron.so/ logo
Join Discord
Powered by
# questions
  • i

    ichimga

    10/23/2020, 7:27 PM
    > I hate to ask a question that's already been asked, but I can't find the answer either on the help page or here, though I thought I saw it asked yesterday... so, apologies!!!! How to trigger autocomplete of existing files when creating links? I tried using the vscode intellisense shortcut but it does not list existing files as options. Thanks in advance! @User can you send a .gif?
  • u

    user

    10/23/2020, 7:43 PM
    > @User if they show up then what is missing? @User Sorry, I meant to say that existing files are not showing up! > @User can you send a .gif? @User
  • u

    user

    10/23/2020, 7:44 PM
    > @User can you send a .gif? @User
  • i

    ichimga

    10/23/2020, 8:14 PM
    I think the files that are not showing up are the ones that have "spaces" in the title.
  • i

    ichimga

    10/23/2020, 8:17 PM
    hm, I think something else is wrong.
  • i

    ichimga

    10/23/2020, 8:20 PM
    make sure you have this plugin installed and enabled
  • b

    Bassmann

    10/23/2020, 8:23 PM
    Another wild guess: what is your setting for
    Copy code
    editor.quicksuggestions
    ? I have the following
  • b

    Bassmann

    10/23/2020, 8:23 PM
    ``"editor.quickSuggestions": { "other": true, "comments": true, "strings": true },``
  • u

    user

    10/23/2020, 8:35 PM
    > Another wild guess: what is your setting for
    Copy code
    editor.quicksuggestions
    ? I have the following @User Are these to be found in the workplace settings?
  • b

    Bassmann

    10/23/2020, 8:36 PM
    I have in the general user settings json but AFAIK they should also work in the workspace settings
  • u

    user

    10/23/2020, 8:44 PM
    @User @User Dendron Markdown Notes is installed and enabled. Even files without "spaces" in the title are not showing up. The editor.quicksuggestions setting was "null". I've now changed the settings.json to reflect @User 's above, restarted vscode and still have same result: files are not showing up in the autocomplete.
  • k

    kevins8

    10/23/2020, 8:49 PM
    @User can you make sure you have the following settings?
    Copy code
    "editor.snippetSuggestions": "inline",
            "editor.suggest.snippetsPreventQuickSuggestions": false,
            "editor.suggest.showSnippets": true,
            "editor.tabCompletion": "on",
    better yet, can you share the output of
    Open Workspace Settings (JSON)
    ?
  • u

    user

    10/23/2020, 8:52 PM
    Copy code
    {
      "folders": [
        {
          "path": "vault"
        }
      ],
      "settings": {
        "dendron.rootDir": ".",
        "editor.minimap.enabled": false,
        "files.autoSave": "onFocusChange",
        "workbench.colorTheme": "Atom One Dark",
        "pasteImage.path": "${currentFileDir}/assets/images",
        "pasteImage.prefix": "/",
        "dendron.useExperimentalLSPSupport": true,
        "markdown-preview-enhanced.enableWikiLinkSyntax": true,
        "markdown-preview-enhanced.wikiLinkFileExtension": ".md",
        "vscodeMarkdownNotes.noteCompletionConvention": "noExtension",
        "vscodeMarkdownNotes.slugifyCharacter": "NONE",
        "editor.snippetSuggestions": "inline",
        "editor.suggest.snippetsPreventQuickSuggestions": false,
        "editor.suggest.showSnippets": true,
        "editor.tabCompletion": "on"
      },
      "extensions": {
        "recommendations": [
          "dendron.dendron-paste-image",
          "equinusocio.vsc-material-theme",
          "dendron.dendron-markdown-shortcuts",
          "dendron.dendron-markdown-preview-enhanced",
          "dendron.dendron-markdown-links",
          "dendron.dendron-markdown-notes",
          "github.github-vscode-theme"
        ],
        "unwantedRecommendations": [
          "shd101wyy.markdown-preview-enhanced",
          "kortina.vscode-markdown-notes",
          "mushan.vscode-paste-image"
        ]
      }
    }
  • k

    kevins8

    10/23/2020, 9:09 PM
    hmm, that looks right. i created a new workspace and pasted your settings and it works fine
  • k

    kevins8

    10/23/2020, 9:09 PM
    i'm wondering if you have global settings or an extensions that is conflicting with tab completion
  • k

    kevins8

    10/23/2020, 9:09 PM
    what do you get with
    open settings (json)
    ?
  • k

    kevins8

    10/23/2020, 9:09 PM
    and what other extensions do you have installed?
  • u

    user

    10/23/2020, 9:11 PM
    Here are user settings:
  • u

    user

    10/23/2020, 9:11 PM
    Copy code
    {
      "window.zoomLevel": 0,
      "editor.lineHeight": 0,
      "editor.fontSize": 15,
      "editor.quickSuggestions": null
    }
  • u

    user

    10/23/2020, 9:11 PM
    And workplace settings:
  • u

    user

    10/23/2020, 9:11 PM
    Copy code
    {
      "folders": [
        {
          "path": "vault"
        }
      ],
      "settings": {
        "dendron.rootDir": ".",
        "editor.minimap.enabled": false,
        "files.autoSave": "onFocusChange",
        "workbench.colorTheme": "Atom One Dark",
        "pasteImage.path": "${currentFileDir}/assets/images",
        "pasteImage.prefix": "/",
        "dendron.useExperimentalLSPSupport": true,
        "markdown-preview-enhanced.enableWikiLinkSyntax": true,
        "markdown-preview-enhanced.wikiLinkFileExtension": ".md",
        "vscodeMarkdownNotes.noteCompletionConvention": "noExtension",
        "vscodeMarkdownNotes.slugifyCharacter": "NONE",
        "editor.snippetSuggestions": "inline",
        "editor.suggest.snippetsPreventQuickSuggestions": false,
        "editor.suggest.showSnippets": true,
        "editor.tabCompletion": "on"
      },
      "extensions": {
        "recommendations": [
          "dendron.dendron-paste-image",
          "equinusocio.vsc-material-theme",
          "dendron.dendron-markdown-shortcuts",
          "dendron.dendron-markdown-preview-enhanced",
          "dendron.dendron-markdown-links",
          "dendron.dendron-markdown-notes",
          "github.github-vscode-theme"
        ],
        "unwantedRecommendations": [
          "shd101wyy.markdown-preview-enhanced",
          "kortina.vscode-markdown-notes",
          "mushan.vscode-paste-image"
        ]
      }
    }
  • k

    kevins8

    10/23/2020, 9:12 PM
    editor.quickSuggestions line
  • k

    kevins8

    10/23/2020, 9:12 PM
    can you remove it?
  • u

    user

    10/23/2020, 9:14 PM
    > editor.quickSuggestions line @User Removed editor.quickSuggestions line from user settings. Restarted. No change.
  • u

    user

    10/23/2020, 9:15 PM
    I really appreciate your time and help, but sorry to have you troubleshoot this for me!
  • k

    kevins8

    10/23/2020, 9:18 PM
    it's all good. now i'm just curious why this isn't working
  • k

    kevins8

    10/23/2020, 9:19 PM
    can you explicitly add the following to your workspace settings?
    Copy code
    "editor.quickSuggestions": {
                "other": true,
                "comments": false,
                "strings": false
            }
  • u

    user

    10/23/2020, 9:21 PM
    Changed worked space setting to include the above, restarted and still no change.
  • u

    user

    10/23/2020, 9:21 PM
    Here it is:
  • u

    user

    10/23/2020, 9:21 PM
    Copy code
    {
      "folders": [
        {
          "path": "vault"
        }
      ],
      "settings": {
        "dendron.rootDir": ".",
        "editor.minimap.enabled": false,
        "files.autoSave": "onFocusChange",
        "workbench.colorTheme": "Atom One Dark",
        "pasteImage.path": "${currentFileDir}/assets/images",
        "pasteImage.prefix": "/",
        "dendron.useExperimentalLSPSupport": true,
        "markdown-preview-enhanced.enableWikiLinkSyntax": true,
        "markdown-preview-enhanced.wikiLinkFileExtension": ".md",
        "vscodeMarkdownNotes.noteCompletionConvention": "noExtension",
        "vscodeMarkdownNotes.slugifyCharacter": "NONE",
        "editor.snippetSuggestions": "inline",
        "editor.suggest.snippetsPreventQuickSuggestions": false,
        "editor.suggest.showSnippets": true,
        "editor.tabCompletion": "on",
        "editor.quickSuggestions": {
          "other": true,
          "comments": false,
          "strings": false
        }
      },
      "extensions": {
        "recommendations": [
          "dendron.dendron-paste-image",
          "equinusocio.vsc-material-theme",
          "dendron.dendron-markdown-shortcuts",
          "dendron.dendron-markdown-preview-enhanced",
          "dendron.dendron-markdown-links",
          "dendron.dendron-markdown-notes",
          "github.github-vscode-theme"
        ],
        "unwantedRecommendations": [
          "shd101wyy.markdown-preview-enhanced",
          "kortina.vscode-markdown-notes",
          "mushan.vscode-paste-image"
        ]
      }
    }
1...99100101...757Latest