mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Be more explicit about the lack of X11 integration
I don't want anyone getting the idea that the `-X` flag they might have used has anything to do with why the `+` is working for them
This commit is contained in:
parent
3b615980c8
commit
2fbcc9ab76
@ -25,7 +25,7 @@ file(WRITE ${EMPTY_FILE} "")
|
|||||||
execute_process(
|
execute_process(
|
||||||
COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/nvim
|
COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/nvim
|
||||||
-u NONE
|
-u NONE
|
||||||
-esX
|
-es
|
||||||
-c "helptags ++t ."
|
-c "helptags ++t ."
|
||||||
-c quit
|
-c quit
|
||||||
WORKING_DIRECTORY ${HELPTAGS_WORKING_DIRECTORY}
|
WORKING_DIRECTORY ${HELPTAGS_WORKING_DIRECTORY}
|
||||||
|
@ -38,7 +38,7 @@ add_custom_command(OUTPUT ${GENERATED_HELP_TAGS}
|
|||||||
COMMAND "${PROJECT_BINARY_DIR}/bin/nvim"
|
COMMAND "${PROJECT_BINARY_DIR}/bin/nvim"
|
||||||
-u NONE
|
-u NONE
|
||||||
-i NONE
|
-i NONE
|
||||||
-esX
|
-es
|
||||||
--headless
|
--headless
|
||||||
-c "helptags ++t ."
|
-c "helptags ++t ."
|
||||||
-c quit
|
-c quit
|
||||||
|
@ -20,7 +20,7 @@ all: tags html
|
|||||||
# Use Vim to generate the tags file. Can only be used when Vim has been
|
# Use Vim to generate the tags file. Can only be used when Vim has been
|
||||||
# compiled and installed. Supports multiple languages.
|
# compiled and installed. Supports multiple languages.
|
||||||
vimtags: $(DOCS)
|
vimtags: $(DOCS)
|
||||||
$(VIMEXE) -u NONE -esX -c "helptags ++t ." -c quit
|
$(VIMEXE) -u NONE -es -c "helptags ++t ." -c quit
|
||||||
|
|
||||||
# Use "doctags" to generate the tags file. Only works for English!
|
# Use "doctags" to generate the tags file. Only works for English!
|
||||||
tags: doctags $(DOCS)
|
tags: doctags $(DOCS)
|
||||||
|
@ -218,6 +218,7 @@ Other commands:
|
|||||||
Other compile-time features:
|
Other compile-time features:
|
||||||
EBCDIC
|
EBCDIC
|
||||||
Emacs tags support
|
Emacs tags support
|
||||||
|
X11 integration (see |x11-selection|)
|
||||||
|
|
||||||
Nvim does not have a built-in GUI and hence the following aliases have been
|
Nvim does not have a built-in GUI and hence the following aliases have been
|
||||||
removed: gvim, gex, gview, rgvim, rgview
|
removed: gvim, gex, gview, rgvim, rgview
|
||||||
|
@ -935,9 +935,6 @@ static void command_line_scan(mparm_T *parmp)
|
|||||||
want_argument = TRUE;
|
want_argument = TRUE;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'X': /* "-X" don't connect to X server */
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'Z': /* "-Z" restricted mode */
|
case 'Z': /* "-Z" restricted mode */
|
||||||
restricted = TRUE;
|
restricted = TRUE;
|
||||||
break;
|
break;
|
||||||
|
@ -82,7 +82,7 @@ if(HAVE_WORKING_LIBINTL AND GETTEXT_FOUND AND XGETTEXT_PRG AND ICONV_PRG)
|
|||||||
set(poFile ${CMAKE_CURRENT_SOURCE_DIR}/${name}.po)
|
set(poFile ${CMAKE_CURRENT_SOURCE_DIR}/${name}.po)
|
||||||
|
|
||||||
add_custom_target(check-po-${name}
|
add_custom_target(check-po-${name}
|
||||||
COMMAND $<TARGET_FILE:nvim> -u NONE -n -e -X
|
COMMAND $<TARGET_FILE:nvim> -u NONE -n -e
|
||||||
-S ${CMAKE_CURRENT_SOURCE_DIR}/check.vim
|
-S ${CMAKE_CURRENT_SOURCE_DIR}/check.vim
|
||||||
-c "if error == 0 | q | endif" -c cq ${poFile} ||
|
-c "if error == 0 | q | endif" -c cq ${poFile} ||
|
||||||
${CMAKE_COMMAND} -E echo "${name}.po failed the check."
|
${CMAKE_COMMAND} -E echo "${name}.po failed the check."
|
||||||
|
@ -456,7 +456,7 @@ function! ExtraVim(...)
|
|||||||
" messing up the user's viminfo file.
|
" messing up the user's viminfo file.
|
||||||
let redirect = a:0 ?
|
let redirect = a:0 ?
|
||||||
\ " -c 'au VimLeave * redir END' -c 'redir\\! >" . a:1 . "'" : ""
|
\ " -c 'au VimLeave * redir END' -c 'redir\\! >" . a:1 . "'" : ""
|
||||||
exec "!echo '" . debug_quits . "q' | ../../../build/bin/nvim -u NONE -N -Xes" . redirect .
|
exec "!echo '" . debug_quits . "q' | ../../../build/bin/nvim -u NONE -N -es" . redirect .
|
||||||
\ " -c 'debuggreedy|set viminfo+=nviminfo'" .
|
\ " -c 'debuggreedy|set viminfo+=nviminfo'" .
|
||||||
\ " -c 'let ExtraVimBegin = " . extra_begin . "'" .
|
\ " -c 'let ExtraVimBegin = " . extra_begin . "'" .
|
||||||
\ " -c 'let ExtraVimResult = \"" . resultfile . "\"'" . breakpoints .
|
\ " -c 'let ExtraVimResult = \"" . resultfile . "\"'" . breakpoints .
|
||||||
|
Loading…
Reference in New Issue
Block a user