X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLyXRC.h;h=8950ea511c15ca7f64988e13a114703def498c47;hb=589e780e153e8cddd577b31316248e1c457c29e3;hp=d795d345ec57044c1c1639519fbdc68dbcc1893d;hpb=44ede7ef4b1603c70c74c02ab784c17e5d7053e2;p=lyx.git diff --git a/src/LyXRC.h b/src/LyXRC.h index d795d345ec..8950ea511c 100644 --- a/src/LyXRC.h +++ b/src/LyXRC.h @@ -53,6 +53,8 @@ public: RC_BINDFILE, RC_CHECKLASTFILES, RC_CHKTEX_COMMAND, + RC_CITATION_SEARCH, + RC_CITATION_SEARCH_PATTERN, RC_CITATION_SEARCH_VIEW, RC_COMPLETION_CURSOR_TEXT, RC_COMPLETION_INLINE_DELAY, @@ -244,13 +246,15 @@ public: /// default paper size for local xdvi/dvips/ghostview/whatever /// command to run chktex incl. options std::string chktex_command = "chktex -n1 -n3 -n6 -n9 -n22 -n25 -n30 -n38"; - // Name of external script, which searches for file corresponding to a - // given citation. At this moment only script lyxpaperview[.py] is supported - // (search for pdf based on author+year), but we can generalize if requested. - // Citation context menu item "Open Citation Content" will be always enabled - // if the name of this script in nonempty (last resort when citation entry - // does not contain neccessary info. + /// Use external script to search for file corresponding to a + /// given citation. + bool citation_search = false; + /// Name of external script which searches for file corresponding to a + /// given citation. At this moment only script lyxpaperview.p is supported + /// (search for pdf or ps based on specific items) std::string citation_search_view; + /// Items to search for in citation_search_view + std::string citation_search_pattern = "%year% %abbrvciteauthor%"; /// all available commands to run bibtex incl. options CommandSet bibtex_alternatives; /// command to run bibtex incl. options @@ -554,8 +558,9 @@ public: }; /// ScrollWheelZoom scroll_wheel_zoom = SCROLL_WHEEL_ZOOM_CTRL; + // FIXME: should be caret_width /// - int cursor_width = 1; + int cursor_width = 0; /// One of: yes, no, ask std::string close_buffer_with_last_view = "yes"; };