Fix option name in haskell.kak

This commit is contained in:
Maxime Coste 2017-01-29 16:10:48 +00:00
parent 5cb0fb13aa
commit 565d835d57
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ def -hidden haskell-indent-on-new-line %{
hook -group haskell-highlight global WinSetOption filetype=haskell %{ add-highlighter ref haskell } hook -group haskell-highlight global WinSetOption filetype=haskell %{ add-highlighter ref haskell }
hook global WinSetOption filetype=haskell %{ hook global WinSetOption filetype=haskell %{
set buffer completion_extra_word_chars "'" set buffer completion_extra_word_char "'"
hook window InsertEnd .* -group haskell-hooks haskell-filter-around-selections hook window InsertEnd .* -group haskell-hooks haskell-filter-around-selections
hook window InsertChar \n -group haskell-indent haskell-indent-on-new-line hook window InsertChar \n -group haskell-indent haskell-indent-on-new-line
} }

View File

@ -59,7 +59,7 @@ ifeq ($(static),yes)
LDFLAGS += -static -pthread LDFLAGS += -static -pthread
endif endif
CXXFLAGS += -pedantic -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare -Wno-address CXXFLAGS += -pedantic -std=gnu++11 -g -Wall -Wextra -Wno-unused-parameter -Wno-reorder -Wno-sign-compare -Wno-address
all : kak all : kak
kak : $(objects) kak : $(objects)