Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mike325 committed Dec 5, 2023
1 parent c1d65ba commit 4a6ac20
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
12 changes: 4 additions & 8 deletions bin/get_nvim.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ NAME="${NAME##*/}"
URL="https://github.com/neovim/neovim"
PYTHON_LIBS=0
RUBY_LIBS=0
BUILD_LIBS=0
# BUILD_LIBS=0
CLONE=0
FORCE_INSTALL=0
PORTABLE=0
Expand Down Expand Up @@ -161,10 +161,6 @@ Usage:
-f, --force Ignore errors and warnings and force compilation
-b, --build Install all dependencies of the before build neovim's source code
Just few systems are supported, Debian's family, Fedora's family and
ArchLinux's family
--dev Use development builds/portables instead of stable
--stable Use stable builds/portables instead of stable
Expand Down Expand Up @@ -495,9 +491,9 @@ while [[ $# -gt 0 ]]; do
-r | --ruby)
RUBY_LIBS=1
;;
-b | --build)
BUILD_LIBS=1
;;
# -b | --build)
# BUILD_LIBS=1
# ;;
-v | --verbose)
VERBOSE=1
;;
Expand Down
5 changes: 2 additions & 3 deletions config/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
if not unpack then
_G['unpack'] = _G['table'].unpack
_G['unpack'] = _G['table'].unpack -- stylua: ignore
end

require 'patch_runtime'

local wezterm = require 'wezterm'
local sys = require 'sys'
local str = require 'utils.strings'
-- local str = require 'utils.strings'
require 'globals'
require 'events'

Expand Down Expand Up @@ -153,7 +153,6 @@ return {
'Symbols Nerd Font Mono',
'Last Resort High-Efficiency',
},
color_scheme = 'tokyonight',
window_background_opacity = 0.9,
scrollback_lines = 10000,
-- TODO: Dynamic check for DPi?
Expand Down
4 changes: 3 additions & 1 deletion scripts/pythonstartup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@

try:
import pyreadline

readline = pyreadline
except ImportError:
try:
import readline as _readline
import rlcompleter
import rlcompleter # noqa

readline = _readline
except ImportError:
print("Error importing readline and pyreadline modules")
Expand Down

0 comments on commit 4a6ac20

Please sign in to comment.