艺术家模式绘制人物障碍

时间:2017-05-15 09:51:56

标签: emacs

我正在为绘画尝试艺术家模式。但我发现虽然我看到的完全是有序的,但文件却变得混乱。

这就是艺术家模式中的样子: file under artist mode

但实际上文件是这样的: actual file content

我正在使用Emacs25 for macOS

2 个答案:

答案 0 :(得分:0)

事实证明,如果在Emacs中设置标签宽度,则会出现此问题。我通过评论解决了这个问题。

例如,在我的情况下,我删除了这两行,并且在Artist Mode中一切正常。

(setq default-tab-width 4)
(setq tab-width 4)

答案 1 :(得分:0)

我在绘制类似figure One in this document的RFC文本中存在的形状时遇到类似的问题。

jpkotta comment指导我解决问题。

首先创建emacs配置文件,然后将此行放置在ideide。

library(telegram.bot) updater <- Updater(token = "TOKEN") inline <- function(bot, update) { text <- "Yes or no?" IKM <- InlineKeyboardMarkup( inline_keyboard = list( list( InlineKeyboardButton("Yes", callback_data = 'yes'), InlineKeyboardButton("No", callback_data = 'no') ) ) ) # Send Inline Keyboard bot$sendMessage(update$message$chat_id, text, reply_markup = IKM) } updater <- updater + CommandHandler('inline', inline) answer_cb <- function(bot, update) { data <- update$callback_query$data # Send Custom Keyboard bot$sendMessage(chat_id = update$callback_query$message$chat$id, text = paste0("Hello")) bot$answerCallbackQuery(callback_query_id = update$callback_query$id, text = paste("Answer recorded:", data)) } updater <- updater + CallbackQueryHandler(answer_cb) updater$start_polling()

此后,开始使用艺术模式在emacs中创建形状。

用这种方法创建的形状在我检查的所有工具(例如emacs,cat,vim,geany,mousepad)中都保留边框,而不是污损。

Screenshot