Kaydet (Commit) fcd0af79 authored tarafından Enrico Tröger's avatar Enrico Tröger

Always show calltip for PHP files.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1681 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst f7d95e73
......@@ -3,6 +3,7 @@
* src/filetypes.c, src/filetypes.h:
Change name of XML filetype to "XML document".
Add sub menus to "Set Filetype" menu.
* src/editor.c: Always show calltip for PHP files.
2007-07-08 Enrico Tröger <enrico.troeger@uvena.de>
......
......@@ -859,9 +859,6 @@ gboolean editor_show_calltip(gint idx, gint pos)
style = SSM(sci, SCI_GETSTYLEAT, pos, 0);
if (is_comment(lexer, style))
return FALSE;
// never show a calltip in a PHP file outside of the <? ?> tags
if (lexer == SCLEX_HTML && ! (style >= SCE_HPHP_DEFAULT && style <= SCE_HPHP_OPERATOR))
return FALSE;
word[0] = '\0';
editor_find_current_word(sci, pos - 1, word, sizeof word, NULL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment