From 4e052521727d2d5aeb8180c0dda6b42864dc4199 Mon Sep 17 00:00:00 2001 From: akir Date: Sun, 10 Oct 2004 16:35:29 +0000 Subject: fbrun switches between file-search and path-to-file-search now correctly (i think) --- util/fbrun/FbRun.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/util/fbrun/FbRun.cc b/util/fbrun/FbRun.cc index 0199f88..bd9a2c8 100644 --- a/util/fbrun/FbRun.cc +++ b/util/fbrun/FbRun.cc @@ -19,7 +19,7 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: FbRun.cc,v 1.32 2004/09/29 00:51:29 akir Exp $ +// $Id: FbRun.cc,v 1.33 2004/10/10 16:35:29 akir Exp $ #include "FbRun.hh" @@ -365,7 +365,8 @@ void FbRun::tabCompleteApps() { string path; - if(!prefix.empty() && prefix[0] =='/') { + if(!prefix.empty() && + string("/.~").find_first_of(prefix[0]) != string::npos) { size_t rseparator= prefix.find_last_of("/"); path= prefix.substr(0, rseparator + 1) + ":"; add_dirs= true; @@ -438,7 +439,7 @@ void FbRun::tabCompleteApps() { } if (m_apps[apps_item].find(prefix) == 0) { m_current_apps_item = apps_item; - if (FbTk::Directory::isDirectory(m_apps[m_current_apps_item])) + if (add_dirs && FbTk::Directory::isDirectory(m_apps[m_current_apps_item])) setText(m_apps[m_current_apps_item] + "/"); else setText(m_apps[m_current_apps_item]); -- cgit v0.11.2