>который по Ctrl+' отправляет курсор в конец открытого файла и добавляет туда отбивку с датой/временем, позволяя сразу выразить мысли, чувства или справочную информацию для чего-либо.
org-mode, org-mode, org-mode. что только люди не делают что бы оргмодом не пользоваться :(
Пробовал, не зашло. Всё же, org-mode для организации данных, а моя цель - сначала записать их без потерь и отвлечений, используя для организации другие инструменты когда (если) потребуется.
Я использую Гугл-док. Очень удобно что можно и дома, и на работе открывать. Запилил скрипт, чтобы сразу в конец дату ставил.
/** * A special function that runs when the spreadsheet is open, used to add a * custom menu to the spreadsheet. */ function onOpen() {
var date = Utilities.formatDate(new Date(), "GMT+0300", "dd.MM.yyyy, E, HH:mm:ss");
// Append a paragraph, then place the user's cursor after the first word of the new paragraph. var doc = DocumentApp.getActiveDocument(); var body = doc.getBody(); var paragraph = body.appendParagraph(date); paragraph.editAsText().setFontFamily("Cambria"); paragraph.setHeading(DocumentApp.ParagraphHeading.HEADING1); paragraph.editAsText().setFontSize(12);
paragraph = body.appendParagraph(" ");
var position = doc.newPosition(paragraph.getChild(0), 0); doc.setCursor(position);
Comments 10
Reply
Reply
org-mode, org-mode, org-mode. что только люди не делают что бы оргмодом не пользоваться :(
Reply
Reply
Reply
Reply
Запилил скрипт, чтобы сразу в конец дату ставил.
/**
* A special function that runs when the spreadsheet is open, used to add a
* custom menu to the spreadsheet.
*/
function onOpen() {
var date = Utilities.formatDate(new Date(), "GMT+0300", "dd.MM.yyyy, E, HH:mm:ss");
// Append a paragraph, then place the user's cursor after the first word of the new paragraph.
var doc = DocumentApp.getActiveDocument();
var body = doc.getBody();
var paragraph = body.appendParagraph(date);
paragraph.editAsText().setFontFamily("Cambria");
paragraph.setHeading(DocumentApp.ParagraphHeading.HEADING1);
paragraph.editAsText().setFontSize(12);
paragraph = body.appendParagraph(" ");
var position = doc.newPosition(paragraph.getChild(0), 0);
doc.setCursor(position);
}
Reply
Leave a comment