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
ntdll.dll!NtReleaseSemaphore() | |
KERNELBASE.dll!ReleaseSemaphore() | |
WmiApRpl.dll!WmiReverseGuard::EnterRead(long const &) | |
WmiApRpl.dll!WmiReverseMemoryExt<class WmiReverseGuard>::Read(void *,unsigned long,unsigned long *,unsigned long) | |
WmiApRpl.dll!WmiAdapterWrapper::GetValidity(unsigned long) | |
WmiApRpl.dll!WmiAdapterWrapper::CollectObjects(unsigned short const *,void * *,unsigned long *,unsigned long *) | |
WmiApRpl.dll!WmiAdapterWrapper::Collect(unsigned short const *,void * *,unsigned long *,unsigned long *) | |
WmiApRpl.dll!WmiCollectPerfData(unsigned short const *,void * *,unsigned long *,unsigned long *) | |
advapi32.dll!CallExtObj() | |
advapi32.dll!QueryV1Provider() |
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
-- Useful for opening the github PR of a commit in fugitive's blame and commit views | |
vim.api.nvim_create_user_command('FindGH', function(opts) | |
local find_pr = true | |
if opts.args and opts.args == "commit" then | |
find_pr = false | |
end | |
local full_hash | |
if vim.b.fugitive_type == 'commit' then | |
local buffer = vim.api.nvim_get_current_buf() |