Scite 插入日期

lua-users home
維基

當我需要在目前編輯位置插入日期和時間,我會找我的智慧型手機或月曆,但這不僅麻煩,而且經常會出現錯誤。因此我喜歡這個簡單的 Lua 程式碼 SciteInsertDate

-- Insert date string at current position
-- 2013.03.31 by lee.sheen at gmail dot com

scite_Command {
  'Insert Date|InsertDate|Alt+Shift+D',
}

function InsertDate ()
  local date_string = os.date("%Y.%m.%d %H:%M")
  -- Tags used by os.date:
  --   %a abbreviated weekday name (e.g., Wed)
  --   %A full weekday name (e.g., Wednesday)
  --   %b abbreviated month name (e.g., Sep)
  --   %B full month name (e.g., September)
  --   %c date and time (e.g., 09/16/98 23:48:10)
  --   %d day of the month (16) [01-31]
  --   %H hour, using a 24-hour clock (23) [00-23]
  --   %I hour, using a 12-hour clock (11) [01-12]
  --   %M minute (48) [00-59]
  --   %m month (09) [01-12]
  --   %p either "am" or "pm" (pm)
  --   %S second (10) [00-61]
  --   %w weekday (3) [0-6 = Sunday-Saturday]
  --   %x date (e.g., 09/16/98)
  --   %X time (e.g., 23:48:10)
  --   %Y full year (1998)
  --   %y two-digit year (98) [00-99]
  --   %% the character '%'

  editor:AddText(date_string)
end


最近變更 · 喜好設定
編輯 · 歷程
最後編輯時間:格林威治時間 2013 年 3 月 31 日 下午 3:51 (差異)