editor

C# XML Editor - Matching XMLNode

江枫思渺然 提交于 2020-05-16 04:02:08
问题 I'm currently wanting to find out an XMLNode from a text location. I have a XML file in a textbox: <Assets id="assets"> <Asset id="background_asset" url="images/rooms/office/background.jpg" /> </Assets> and I'm wanting to fetch the current node name from my cursor/caret location within the textbox I could parse the current XML tag at the cursor/caret position, but I then wouldn't be able to find the parent... I'm wondering if there is a way of getting the XMLNode from an XMLDocument 回答1: You

Opening files in Vim using Fuzzy Search

|▌冷眼眸甩不掉的悲伤 提交于 2020-05-09 17:44:05
问题 I'm looking for a way to make Vim have the ability to open a file by fuzzy-searching its name. Basically, I want to be able to define a project once, and then have a shortcut which will give me a place to type a file name, and will match if any letters match up. This kind of functionality exists in most editors I've seen, but for the life of me I can't understand how to get Vim to do this. Note that I'm looking for something that won't require me to have any idea where in my directory tree a

java注释详解--javadoc注释

这一生的挚爱 提交于 2020-04-07 13:05:13
一. Java注释分类 // 注释一行 /* ...... */ 注释若干行 /** ...... */ 注释若干行,并写入 javadoc 文档 通常这种注释的多行写法如下: /** * ......... * ......... */ javadoc -d 文档存放目录 -author -version 源文件名.java 这条命令编译一个名为 “源文件名.java”的 java 源文件,并将生成的文档存放在“文档存放目录”指定的目录下,生成的文档中 index.html 就是文档的首页。-author 和 -version 两个选项可以省略。 二. 文档注释的格式 1. 文档和文档注释的格式化 生成的文档是 HTML 格式,而这些 HTML 格式的标识符并不是 javadoc 加的,而是我们在写注释的时候写上去的。 比如,需要换行时,不是敲入一个回车符,而是写入 <br>,如果要分段,就应该在段前写入 <p>。 文档注释的正文并不是直接复制到输出文件 (文档的 HTML 文件),而是读取每一行后,删掉前导的 * 号及 * 号以前的空格,再输入到文档的。如 /** * This is first line. <br> ***** This is second line. <br> This is third line. */ 2. 文档注释的三部分 先举例如下 /** *

vsCode_1.27.2

只谈情不闲聊 提交于 2020-04-03 01:56:11
User Settings: 一,当前行高亮显示: "editor.renderLineHighlight": "line", 二,如何呈现空白字符(一般选none,这样会比较清爽) "editor.renderWhitespace": "none" "editor.renderWhitespace": "all" 三, 窗口失去焦点自动保存 "files.autoSave": "onFocusChange", 四,通过使用鼠标滚轮同时按住 Ctrl 可缩放编辑器的字体 "editor.mouseWheelZoom": true, 五,图标的显示 "workbench.iconTheme": "vscode-great-icons", 六,主题色(这里选择了"Solarized Dark") "workbench.colorTheme": "Default Dark+" 七,打开新窗口的页面(建议用“newUntitledFile”) "workbench.startupEditor": "newUntitledFile", "workbench.startupEditor": "welcomePage", { "workbench.colorTheme": "Solarized Dark", "editor.quickSuggestions": { "strings": true

FCKeditor的样式设置

最后都变了- 提交于 2020-03-27 07:58:23
Styles 样式 在FCK压缩包提供的完整版的例子中,我们可以在编辑器中看到四个下拉列表,一个是样式下拉列表,一个是格式下拉列表,还有就是字体和大小这两个下拉列表。本章所讲的就是如何自定义 样式下拉列表中的样式。在一些cms中 比如 dedecms 里就把 样式下拉列表给去掉了,可能他觉得不是很常用吧。 Styles Configuration 样式的配置 The editor offers complete and powerful support for separating text formatting definitions from the text itself. And even more, it's possible to offer a complete set of predefined formatting definitions to the end-user (writer) so the text can be well designed without messing up the HTML source. 编辑器提供了很强大的对自定义的特定的样式的支持,通过在xml 之类的文件中定义好样式,就可以在编辑器中直接使用,不用到html 源代码中修改,因为毕竟编辑器提供的图标是有限的,默认的样式也是有限的,所以如果想在编辑器中应用自己的样式的话

百度编辑器固定高度后图片框定位不准

為{幸葍}努か 提交于 2020-03-25 19:07:38
百度编辑器固定高度后图片框定位不准 固定高度属性:initialFrameHeight:400 定位不准截图: 修改方法一:修改ueditor.all.js文件中attachTo中的top;如图注释掉的是定位不准的,改成底下未注释的; attachTo: function (targetObj) { var me = this, target = me.target = targetObj, resizer = this.resizer, imgPos = domUtils.getXY(target), iframePos = domUtils.getXY(me.editor.iframe), editorPos = domUtils.getXY(resizer.parentNode); domUtils.setStyles(resizer, { 'width': target.width + 'px', 'height': target.height + 'px', 'left': iframePos.x + imgPos.x - me.editor.document.body.scrollLeft - editorPos.x - parseInt(resizer.style.borderLeftWidth) + 'px', //'top': iframePos.y +

django-kindeditor编辑器

你。 提交于 2020-03-23 12:07:30
一:kindeditor是HTML的一款编辑器插件. 1,下载地址:: KindEditor 4.1.11 (2016-03-31) 2,修改html页面的具体的操作: 1,在需要显示编辑器的位置添加textarea输入框 <textarea id="editor_id" name="content" style="width:700px;height:300px;"> #这里的id值是唯一的,但是也可以变,只要后面用到id值的地方都一样即可. </textarea> 注意: id在当前页面必须是唯一的值。 在textarea里设置HTML内容即可实现编辑,在这里需要注意的是,如果从服务器端程序(ASP、PHP、ASP.NET等)直接显示内容,则必须转换HTML特殊字符(>,<,&,”)。  具体请参考各语言目录下面的demo.xxx程序,目前支持ASP、ASP.NET、PHP、JSP。 在有些浏览器上不设宽度和高度可能显示有问题,所以最好设一下宽度和高度。宽度和高度可用inline样式设置,也可用 编辑器初始化参数 设置。 2,在该HTML页面添加以下脚本 <script charset="utf-8" src="/editor/kindeditor.js"></script> #这里的两行视情况而定.<script charset="utf-8" src="/editor

How to open the default text editor in Linux?

ⅰ亾dé卋堺 提交于 2020-03-22 07:20:23
问题 I need to open the default text editor in Linux without having a file. I know that I could use the comand xdg-open to open a file in the default editor but I need to open the editor without having a file and let the user create the file. Edit: I solve with this script: #!/bin/sh cd /usr/share/applications/ atalho=`grep $1 defaults.list | tail -1 | sed "s:^$1=::" ` `grep '^Exec' $atalho | tail -1 | sed 's/^Exec=//' | sed 's/%.//'` & Works fine on Ubuntu but I'm worried if this script will work

具有丰富滤镜效果的图片编辑器:InPixio Photo Editor

北城以北 提交于 2020-03-21 19:31:06
3 月,跳不动了?>>> InPixio Photo Editor for Mac是一款适用于Mac操作系统的图片编辑器,拥有许多先进的图形编辑功能,可以一键对照片进行编辑处理或者添加各种效果等操作。InPixio Photo Editor Mac激活版还提供了丰富的滤镜效果,包括怀旧、黑白、四季、老式影片等,功能强大,使用便捷。 InPixio Photo Editor mac破解版软件功能 转换 普通到令人惊叹! 在阴天或极端阳光下拍摄的照片可能会失去预期的吸引力,最终无法与他人分享。通过允许您更改图片的颜色,亮度和色调,照片编辑器可以轻松地将看起来暗淡或过亮的照片转换为“弹出”的图像。不要让不正确的灯光或糟糕的构图妨碍你表达你的特殊时刻。使用Mac版Photo Editor图片编辑器剪切/裁剪,着色,饱和或添加复古外观。更不用说,我们的软件专为易用性而设计,因此您可以立即开始使用! 编辑照片很简单! 使用我们的照片编辑器,您可以完全控制图像的外观。使用预设效果,调整对比度,饱和度,色调,亮度等等。裁剪或重新调整照片大小,然后使用纹理覆盖或相框打扮。添加+100帧从各种框架和效果叠加中进行选择以增强照片效果照片编辑更改颜色和亮度等,以充分利用您喜欢的镜头!+50纹理添加纹理:照片的平滑或粗糙背景+100过滤器和效果添加超棒的效果并将照片变成艺术品 - 快速简便。使用方便

备忘录模式

纵然是瞬间 提交于 2020-03-21 01:19:57
3 月,跳不动了?>>> 又称为快照模式或令牌模式, 是指在不破坏封装的前提下, 捕获一个对象的内部状态, 并在对象之外保存这个状态。这样以后就可将该对象恢复到原先保存的状态 特征: 后悔药;属于行为型模式 使用场景 1、需要保存历史快照的场景 2 希望在对象之外保存状态, 且除了自己其他类对象无法访问状态保存具体内容 public class Memento { private String state ; public Memento (String state) { this . state = state ; } public String getState () { return state ; } public void setState (String state) { this . state = state ; } } public class Originator { private String state ; public String getState () { return state ; } public void setState (String state) { this . state = state ; } /** * 创建一个备忘录 * @return */ public Memento createMemento () { return