This file contains 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 fn = vim.fn | |
local api = vim.api | |
local executable = function(e) | |
return fn.executable(e) > 0 | |
end | |
local opts_info = vim.api.nvim_get_all_options_info() | |
local opt = setmetatable( | |
{}, { |
This file contains 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
#!/usr/bin/python | |
# to try this you'll need to edit in the name of your ruby binary and install bcc-tools | |
# bcc installation instructions are at https://github.com/iovisor/bcc/blob/master/INSTALL.md | |
from __future__ import print_function | |
from bcc import BPF | |
from time import sleep | |
import os | |
# load BPF program |