馃摀 What set this value?
Ever wanted to know what value a variable has and where it was set from in Vim? ...
Ever wanted to know what value a variable has and where it was set from in Vim? ...
Accessing an environment variable within Neovim from a lua script is straight forward. It is just a case of calling vim.env.env-var-name where env-var-name is the name of the environment variable e.g. ...
Within GitHub, if you belong to multiple organisations it is easy to have those notifications routed to specific email addresses. This is very useful if, for example, you use the same GitHub account for work and personal use. ...
Within a Svelte project seeing an error such as cannot find module '$lib/..' or its corresponding type declarations can be resolved by running npm run prepare. This will update tsconfig.json to add $lib to compilerOptions.paths. ...
It is possible to build, create, start and up a specific service or services from Docker Compose. By default these commands work with an optional list of services. Each service specified will have the command run for it. ...
From version 3.8 of the compose file specification the version key is no longer required. However, it can be kept for information, if so desired. ...
It is straight forward to order content in Hugo by leveraging front matter variables. The default order is Weight -> Date -> LinkTitle -> FilePath. It is easy to change the order based on the specific property of interest. See lists of content in Hugo for more information. ...
Add a misspelt word to Vim鈥檚 dictionary with zg. See the list of suggestions for a misspelt word with z=. Enter the number of the correct suggestion and hit enter to select it. ...
In a Git repo run git log -1 to get details of the last commit. ...
A subset of Bash builtins I occasionally forget about and want a quick reference to. ...