Skip to content

Commit

Permalink
Refactor GraphQL Queries to use GitLab's 'glab
Browse files Browse the repository at this point in the history
  • Loading branch information
l0nax committed Apr 11, 2022
1 parent 1ba7982 commit 438951b
Show file tree
Hide file tree
Showing 69 changed files with 4,218 additions and 512 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
build:
rm -rf lua/*
tl build
rsync -zarv --include="*/" --include="*.lua" --exclude="*" "src/" "lua/"
17 changes: 17 additions & 0 deletions inc/plenary/job.d.tl
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
local record Job
command: string
args: {string}
cwd: string
enable_recording: boolean -- TODO: From the plenary source code there is no 'enable_recording' only 'enabled_recording'!
env: {string:any} -- NOTE: This may be also an array!

new: function(self: Job, o: Job): Job
sync: function(self: Job, timeout: integer, wait_interval: integer): Job
start: function(self: Job)
stderr_result: function(self: Job): {string}
result: function(self: Job): {string}

on_exit: function(self: Job, code: number, signal: number)
end

return Job
259 changes: 0 additions & 259 deletions lua/octo/init.lua

This file was deleted.

File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions src/octo/completion.d.tl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
local record M
-- TODO: Migrate
end

return M
File renamed without changes.
Loading

0 comments on commit 438951b

Please sign in to comment.