码迷,mamicode.com
首页 >  
搜索关键字:indent    ( 1126个结果
实现shell脚本模板,自动生成开头注释信息
建议在用户家目录创建.vimrc文件:文件格式如下:setignorecasesetautoindentsetpasteautocmdBufNewFile*.shexec":.callSetTitle()"funcSetTitle()ifexpand("%:e")==‘sh‘callsetline(1,"#!/bin/bash")callsetline(2,"#******************
分类:系统相关   时间:2020-08-03 23:10:17    阅读次数:112
vimrc
vimrc配置 set nocompatible call pathogen#infect() filetype plugin indent on set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936 set termencoding=ut ...
分类:系统相关   时间:2020-07-28 13:55:19    阅读次数:170
2css
字体属性 <style> body { font-family:'Microsoft YaHei'; font-size: 22px; font-weight: 700; } </style> 文本颜色、对齐文本text-align、装饰文本text-decoration、文本缩进text-inde ...
分类:Web程序   时间:2020-07-26 01:24:08    阅读次数:111
无插件Vim配置文件vimrc推荐与各VIM配置项解释
这里有个女程序员写的VIM配置文件,写的很好推荐下: https://vimjc.com/vimrc.html Vim 配置选项可以在 Vim 命令行模式下通过 :set 配置选项xxx 的形式执行,也可以通过 set 配置选项xxx 的格式保在配置文件中被 Vim 加载执行。Vim的配置文件 (例 ...
分类:系统相关   时间:2020-07-22 15:49:34    阅读次数:109
字典读写训练
字典写入json文件中: import json stu_mark={} stu_mark["Name"]=input("Name=") stu_mark["English"]=float(input("English=")) stu_mark["Music"]=float(input("Music ...
分类:其他好文   时间:2020-07-21 14:10:56    阅读次数:83
css文字渐变色_css文字颜色渐变的3种实现
在web前端开发过程中,UI设计师经常会设计一些带渐变文字的设计图,在以前我们只能用png的图片来代替文字,今天可以实现使用纯css实现渐变文字了。下面就介绍3中实现方式供大家参考! 基础样式: .gradient-text{text-align: left;text-indent:30px;lin ...
分类:Web程序   时间:2020-07-18 11:27:54    阅读次数:77
文本样式
color 设置文本颜色 color:#00C; text-align 设置元素水平对齐方式 text-align:right; text-indent 设置首行文本的缩进 text-indent:20px; line-height 设置文本的行高 line-height:25px; text-de ...
分类:其他好文   时间:2020-07-12 22:22:59    阅读次数:59
pip 网路超时
解决python pip 出现read time out问题 出现read time out问题是一般由于python包被墙导致下载速度变慢,pip下载超时。 解决方法一: 添加 --default-timeout:自定义timeout时间,一般能解决大部分timeout问题,但是无法提升下载速度。 ...
分类:其他好文   时间:2020-07-10 15:32:44    阅读次数:66
前端工程师面试题汇总-1
1.css中定位相关样式属性为 C A:float B:text-indent C:position D:visibility 解析:CSS 定位 (Positioning) 属性允许你对元素进行定位。 float 属性定义元素在哪个方向浮动。 text-indent 属性规定文本块中首行文本的缩进 ...
分类:其他好文   时间:2020-07-08 19:58:04    阅读次数:113
vim
vimrc colorscheme ron :syntax on filetype on filetype plugin on filetype indent on set sts=4 set shiftwidth=4 set backspace=2 set tabstop=4 set showmo ...
分类:系统相关   时间:2020-07-08 09:14:50    阅读次数:84
1126条   上一页 1 2 3 4 5 ... 113 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!