“打开”对话框中的搜索功能已过时

“打开”对话框中的搜索功能已过时

如果我最近(甚至在过去几天)保存了一个文件,它不会出现在某些程序的“打开对话框”搜索中

(“打开程序对话框”如下。它出现在 libreoffice 和 Firefox 上)

我想知道为什么这个搜索不是最新的:这个搜索背后的基础架构是什么?它会不时更新某种索引吗?我该如何配置它以更频繁地更新?

答案1

您所指的列表Recently Used存储为 xml 文件~/.local/share/recently-used.xbel。以下是示例

<?xml version="1.0" encoding="UTF-8"?>
<xbel version="1.0"
      xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
      xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
  <bookmark href="file:///home/Usename/Firewall/fwbuilder.fwb" added="2012-11-07T04:33:55Z" modified="2012-12-20T05:31:26Z" visited="2012-11-07T04:33:55Z">
    <info>
      <metadata owner="http://freedesktop.org">
        <mime:mime-type type="application/octet-stream"/>
        <bookmark:applications>
          <bookmark:application name="fwbuilder" exec="&apos;fwbuilder %u&apos;" modified="2012-12-20T05:31:26Z" count="4"/>
        </bookmark:applications>
      </metadata>
    </info>
  </bookmark>
  <bookmark href="file:///home/Usename/Desktop/limit_test.py" added="2012-12-16T04:48:29Z" modified="2012-12-16T06:02:28Z" visited="2012-12-16T04:48:30Z">
    <info>
      <metadata owner="http://freedesktop.org">
        <mime:mime-type type="text/x-python"/>
        <bookmark:groups>
          <bookmark:group>gedit</bookmark:group>
        </bookmark:groups>
        <bookmark:applications>
          <bookmark:application name="gedit" exec="&apos;gedit %u&apos;" modified="2012-12-16T06:02:28Z" count="16"/>
        </bookmark:applications>
      </metadata>
    </info>
  </bookmark>
  <bookmark href="file:///home/Usename/Firewall/gateway.int.apple.com.fw" added="2012-12-20T05:32:03Z" modified="2012-12-20T05:35:25Z" visited="2012-12-20T05:32:03Z">
    <info>
      <metadata owner="http://freedesktop.org">
        <mime:mime-type type="application/x-shellscript"/>
        <bookmark:groups>
          <bookmark:group>gedit</bookmark:group>
        </bookmark:groups>
        <bookmark:applications>
          <bookmark:application name="gedit" exec="&apos;gedit %u&apos;" modified="2012-12-20T05:35:25Z" count="3"/>
        </bookmark:applications>
      </metadata>
    </info>
  </bookmark>
</xbel>

它是 GTK+ 库/框架的一个功能/特性。

软件(包括使用 GTK+ 的软件)之间不一致的原因是,单个软件包/软件的作者可以选择使用或不使用它。没有法律/规则来强制执行这一点。一些作者可能选择不在他们的软件中提供最新列表。一些作者可能自己实现。一些作者可能将其与文件类型(文件扩展名)过滤器一起使用。

这无所谓对错。这也会发生在其他操作系统上运行的软件上,而不仅仅是 Linux。

相关内容