This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /Users/rodhash/.local/share/nvim/lazy/dotenv.nvim/tests/minimal_init.lua:4: vim.fn.system({ "git", "clone", "https://github.com/nvim-lua/plenary.nvim", plenary_dir }) | |
| /Users/rodhash/.local/share/nvim/lazy/markdown-preview.nvim/autoload/health/mkdp.vim:5: lua vim.health.info('Nvim Version: ' .. string.gsub(vim.fn.system('nvim --version'), '^%s*(.-)%s*$', '%1')) | |
| /Users/rodhash/.local/share/nvim/lazy/markdown-preview.nvim/autoload/health/mkdp.vim:12: lua vim.health.info('Node version: ' .. string.gsub(vim.fn.system('node --version'), '^%s*(.-)%s*$', '%1')) | |
| /Users/rodhash/.local/share/nvim/lazy/aerial.nvim/tests/test_util.lua:77: local formatted_json = vim.fn.system("jq --sort-keys", vim.json.encode(content)) | |
| /Users/rodhash/.local/share/nvim/lazy/aerial.nvim/.github/ISSUE_TEMPLATE/bug_report.yml:83: vim.fn.system({ | |
| /Users/rodhash/.local/share/nvim/lazy/overseer.nvim/.github/ISSUE_TEMPLATE/bug_report.yml:78: vim.fn.system({ | |
| /Users/rodhash/.local/share/nvim/lazy/vim-floaterm/lua/floaterm/h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local utils = require("oklch-color-picker.utils") | |
| local downloader = require("oklch-color-picker.downloader") | |
| local ra = require("oklch-color-picker.reusable_array") | |
| local ra_new, ra_push, ra_clear = ra.new, ra.push, ra.clear | |
| local find, sub, format = string.find, string.sub, string.format | |
| local insert = table.insert | |
| local pow, min, max, floor = math.pow, math.min, math.max, math.floor | |
| local rshift, band, lshift, bor = bit.rshift, bit.band, bit.lshift, bit.bor | |
| local nvim_buf_clear_namespace, nvim_buf_del_extmark, nvim_buf_set_extmark, nvim_set_hl, nvim_buf_get_extmarks = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local utils = require("oklch-color-picker.utils") | |
| local downloader = require("oklch-color-picker.downloader") | |
| local find, sub, format = string.find, string.sub, string.format | |
| local insert = table.insert | |
| local pow, min, max, floor = math.pow, math.min, math.max, math.floor | |
| local rshift, band, lshift, bor = bit.rshift, bit.band, bit.lshift, bit.bor | |
| local nvim_buf_clear_namespace, nvim_buf_del_extmark, nvim_buf_set_extmark, nvim_set_hl, nvim_buf_get_extmarks = | |
| vim.api.nvim_buf_clear_namespace, | |
| vim.api.nvim_buf_del_extmark, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tasks: | |
| - name: Download new file | |
| get_url: | |
| url: "{{ item.url }}" | |
| dest: "{{ schema_dir }}/{{ filename }}.new" | |
| mode: '0644' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # tmux requires unrecognized OSC sequences to be wrapped with DCS tmux; | |
| # <sequence> ST, and for all ESCs in <sequence> to be replaced with ESC ESC. It | |
| # only accepts ESC backslash for ST. | |
| function print_osc() { | |
| if [[ -n $TERM ]] ; then | |
| printf "\033Ptmux;\033\033]" | |
| else | |
| printf "\033]" |