2
2
zrcadlo https://github.com/Hilbis/Hilbish synchronizováno 2025-07-15 15:22:03 +00:00

Porovnat revize

..

Žádné společné commity. „afe579f5be560cf500d0953e6b533333fbea0dff“ a „22d8a615447a2a9e6d486b3c0f5f80d946ad56f5“ mají zcela odlišnou historii.

4 změnil soubory, kde provedl 4 přidání a 9 odebrání

Zobrazit soubor

@ -173,7 +173,6 @@ func lookpath(file string) error {
return os.ErrNotExist
}
func findExecutable(name string) error {
f, err := os.Stat(name)
if err != nil {

Zobrazit soubor

@ -3,7 +3,7 @@ local bait = require 'bait'
local commander = require 'commander'
local fs = require 'fs'
local lunacolors = require 'lunacolors'
local _ = require 'succulent' -- Function additions
local _ require 'succulent' -- Function additions
local oldDir = hilbish.cwd()
local shlvl = tonumber(os.getenv 'SHLVL')

Zobrazit soubor

@ -6,10 +6,7 @@ package main
// making them interchangable during build time
// this is hilbiline's, as is obvious by the filename
import (
"github.com/Rosettea/Hilbiline"
"github.com/yuin/gopher-lua"
)
import "github.com/Rosettea/Hilbiline"
type lineReader struct {
hl *hilbiline.HilbilineState
@ -45,7 +42,7 @@ func (lr *lineReader) Resize() {
}
// lua module
func (lr *lineReader) Loader(L *lua.LState) *lua.LTable {
func (lr *lineReader) Loader() *lua.LTable {
lrLua := map[string]lua.LGFunction{
"add": lr.luaAddHistory,
"all": lr.luaAllHistory,

Zobrazit soubor

@ -12,7 +12,6 @@ import (
"fmt"
"github.com/maxlandon/readline"
"github.com/yuin/gopher-lua"
)
type lineReader struct {
@ -65,7 +64,7 @@ func (lr *lineReader) Resize() {
}
// lua module
func (lr *lineReader) Loader(L *lua.LState) *lua.LTable {
func (lr *lineReader) Loader() *lua.LTable {
lrLua := map[string]lua.LGFunction{
"add": lr.luaAddHistory,
"all": lr.luaAllHistory,