npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

coc-tsdetect

v4.0.3

Published

coc.nvim extensions for detecting node and deno environment.

Downloads

38

Readme

vim-tsdetect

npm Luma Style Guide GitHub Workflow Status - CI Codecov

vim-tsdetect/coc-tsdetect provides vim/neovim and coc.nvim extension to initialize workspace automatically for coc-tsserver and coc-deno.

Installation

Run :CocInstall coc-tsdetect in vim/neovim or install vim-tsdetect with your favorite plugin manager and build with pnpm install && pnpm run build. It is enough to install one of them.

How does this detect TS environments?

Checking following in order.

  1. If buffer name starts with deno:/ -> deno
  2. If buffer name ends with .js, .ts, .tsx -> check following in order
    a. Shebang is present and including node -> node
    b. Shebang is present and including deno -> deno
    c. node_modules/ directory is found in ancestors of (following) -> node
    - If buffer name is not empty, search from that path.
    - Otherwise, search from current working directory.
    d. Otherwise. -> deno
  3. -> Check following in order
    a. Shebang is present and including node -> node
    b. Shebang is present and including deno -> deno
  4. Otherwise, nothing is detected.

When does this try to detect?

This tries to detect when following events occurred.

  • FileType javascript,javascriptreact,typescript,typescript.tsx,typescriptreact
  • BufEnter,BufNewFile,BufWritePost *

Options

Please configure following if necessary by :CocConfig.

tsdetect.mode

Set this "manual" to disable auto initialization. Variable b:tsdetect_is_node remains available.

Values: "auto" | "manual"

Default:

{
  "tsdetect.mode": "auto"
}

tsdetect.doNotCreateOnNode

By default, in Node.js environment, tsdetect does not create a workspace configuration (.vim/coc-settings.json). Set this false to create configuration file whether the configuration exists.

Values: boolean

Default:

{
  "tsdetect.doNotCreateOnNode": true
}

tsdetect.nodeOverride

Workspace configuration to be set in Node.js environment. If you want to extend original configuration, you need to include default ones. Not recommended to touch deno.enable and tsserver.enable.

Values: object

Default:

{
  "tsdetect.nodeOverride": {
    "deno.lint": false,
    "coc.source.file.trimSameExts": [
      ".js",
      ".ts"
    ],
    "prettier.disableLanguages": []
  }
}

tsdetect.denoOverride

Workspace configuration to be set in Deno environment. If you want to extend original configuration, you need to include default ones. Not recommended not to touch deno.enable and tsserver.enable.

Values: object

Default:

{
  "tsdetect.denoOverride": {
    "deno.lint": true,
    "coc.source.file.trimSameExts": [],
    "prettier.disableLanguages": [
      "javascript",
      "javascriptreact",
      "typescript",
      "typescriptreact"
    ]
  }
}

Events

tsdetect#detect

Fired when the tsdetect detects TypeScript environment in the flow shown in above.

tsdetect#detect#node

Fired when tsdetect#detect is fired and environment was detected as node.

tsdetect#detect#deno

Fired when tsdetect#detect is fired and environment was detected as deno.

tsdetect#coc#auto#switch#node#after

Fired after the automatic switch to node triggered and finished.

tsdetect#coc#auto#switch#deno#after

Fired after the automatic switch to deno triggered and finished.

Variables

b:tsdetect_is_node

Set when tsdetect#detect is fired.

Limitations

  • Not recommended to include deno.enable and tsserver.enable settings in user configuration (~/.vim/coc-settings.json that can be opened by :CocConfig).
  • To prevent .vim/ directory being committed by VCS, you can globally ignore .vim/, or ignore one by one using git update-index --skip-worktree .vim for git projects.

Example Configurations

Example for deno.cache on save if deno environment is detected:

function! s:my_coc_tsdetect_buf_write_post() abort
  if !get(g:, 'coc_enabled', 0)
    return
  endif
  if exists('b:tsdetect_is_node') && !b:tsdetect_is_node
    CocCommand deno.cache
  endif
endfunction

augroup my-coc-tsdetect
  autocmd!
  autocmd BufWritePost * call <SID>my_coc_tsdetect_buf_write_post()
augroup END

LICENSE

MIT

Author

Luma