Actually, isn’t not really a question. (Since my examinations get close, I don't really have the time to search for a solution to my problems.)
Rather than using the common \item, I'd like to use simple tabulation, with the possibility to indent. I know it isn't really the spirit of latex, but I want to fuse "Word" document with LaTeX one, to make them more pretty, and there are a lot of "itemized" item. And they ate a lot of time.
I was thinking of the use of special environment, or may be the "WYSIWYG" mode of LaTeX (normally used to show LaTeX code, for example), the verbatim environment (but "what" for the "arrow", or point or what ever that show the element ?).

Please don't mind the underlingment in the picture.
Edit :
Here, I just play a little with the code, and it give this :

The "new" code (originally from Peter Grill) :
\documentclass{article}
\usepackage{pgf}
\usepackage{xstring}
\usepackage{listings}
\newcounter{NumOfContigousSpaces}%
\setcounter{NumOfContigousSpaces}{0}%
\newcommand{\Width}{1}%
\newcommand*{\AddApproriateBulletIfFirstChar}[1]{%
\pgfmathtruncatemacro{\BulletType}{\arabic{NumOfContigousSpaces}/4}%
\IfEqCase{\BulletType}{%
{0}{\gdef\Width{1}}
{1}{\gdef\Width{3}$\bullet$\hspace{1em}}
{2}{\gdef\Width{3}$\circ$\hspace{1em}}
{3}{\gdef\Width{3}$\star$\hspace{1em}}
}[\gdef\Width{3}$\bullet$\hspace{1em}]%
#1%
\setcounter{NumOfContigousSpaces}{0}%
}%
\newcommand*{\ProcessSpace}{%
\stepcounter{NumOfContigousSpaces}%
\hspace{4em}%
}%
\lstset{literate=%
{\ }{{{\ProcessSpace}}}1% Count contigous spaces
{a}{{{\AddApproriateBulletIfFirstChar{a}}}}\Width
{b}{{{\AddApproriateBulletIfFirstChar{b}}}}\Width
{c}{{{\AddApproriateBulletIfFirstChar{c}}}}\Width
{d}{{{\AddApproriateBulletIfFirstChar{d}}}}\Width
{e}{{{\AddApproriateBulletIfFirstChar{e}}}}\Width
{f}{{{\AddApproriateBulletIfFirstChar{f}}}}\Width
{g}{{{\AddApproriateBulletIfFirstChar{g}}}}\Width
{h}{{{\AddApproriateBulletIfFirstChar{h}}}}\Width
{i}{{{\AddApproriateBulletIfFirstChar{i}}}}\Width
{j}{{{\AddApproriateBulletIfFirstChar{j}}}}\Width
{k}{{{\AddApproriateBulletIfFirstChar{k}}}}\Width
{l}{{{\AddApproriateBulletIfFirstChar{l}}}}\Width
{m}{{{\AddApproriateBulletIfFirstChar{m}}}}\Width
{n}{{{\AddApproriateBulletIfFirstChar{n}}}}\Width
{o}{{{\AddApproriateBulletIfFirstChar{o}}}}\Width
{p}{{{\AddApproriateBulletIfFirstChar{p}}}}\Width
{q}{{{\AddApproriateBulletIfFirstChar{q}}}}\Width
{r}{{{\AddApproriateBulletIfFirstChar{r}}}}\Width
{s}{{{\AddApproriateBulletIfFirstChar{s}}}}\Width
{t}{{{\AddApproriateBulletIfFirstChar{t}}}}\Width
{u}{{{\AddApproriateBulletIfFirstChar{u}}}}\Width
{v}{{{\AddApproriateBulletIfFirstChar{v}}}}\Width
{w}{{{\AddApproriateBulletIfFirstChar{w}}}}\Width
{x}{{{\AddApproriateBulletIfFirstChar{x}}}}\Width
{y}{{{\AddApproriateBulletIfFirstChar{y}}}}\Width
{z}{{{\AddApproriateBulletIfFirstChar{z}}}}\Width
%--- now handle uppercase chars
{A}{{{\AddApproriateBulletIfFirstChar{A}}}}\Width
{B}{{{\AddApproriateBulletIfFirstChar{B}}}}\Width
{C}{{{\AddApproriateBulletIfFirstChar{C}}}}\Width
{D}{{{\AddApproriateBulletIfFirstChar{D}}}}\Width
{E}{{{\AddApproriateBulletIfFirstChar{E}}}}\Width
{F}{{{\AddApproriateBulletIfFirstChar{F}}}}\Width
{G}{{{\AddApproriateBulletIfFirstChar{G}}}}\Width
{H}{{{\AddApproriateBulletIfFirstChar{H}}}}\Width
{I}{{{\AddApproriateBulletIfFirstChar{I}}}}\Width
{J}{{{\AddApproriateBulletIfFirstChar{J}}}}\Width
{K}{{{\AddApproriateBulletIfFirstChar{K}}}}\Width
{L}{{{\AddApproriateBulletIfFirstChar{L}}}}\Width
{M}{{{\AddApproriateBulletIfFirstChar{M}}}}\Width
{N}{{{\AddApproriateBulletIfFirstChar{N}}}}\Width
{O}{{{\AddApproriateBulletIfFirstChar{O}}}}\Width
{P}{{{\AddApproriateBulletIfFirstChar{P}}}}\Width
{Q}{{{\AddApproriateBulletIfFirstChar{Q}}}}\Width
{R}{{{\AddApproriateBulletIfFirstChar{R}}}}\Width
{S}{{{\AddApproriateBulletIfFirstChar{S}}}}\Width
{T}{{{\AddApproriateBulletIfFirstChar{T}}}}\Width
{U}{{{\AddApproriateBulletIfFirstChar{U}}}}\Width
{V}{{{\AddApproriateBulletIfFirstChar{V}}}}\Width
{W}{{{\AddApproriateBulletIfFirstChar{W}}}}\Width
{X}{{{\AddApproriateBulletIfFirstChar{X}}}}\Width
{Y}{{{\AddApproriateBulletIfFirstChar{Y}}}}\Width
{Z}{{{\AddApproriateBulletIfFirstChar{Z}}}}\Width
}
\begin{document}
\begin{lstlisting}
Not indent one
What a want to indent
Others stuff
And subindent
Again other
And even more subindent
More and more
Another thing
Last one
\end{lstlisting}
\end{document}
I've added some \hpsace, and put one instead of a simple \space. It makes the word more clear.
I don't know what is the {\ } for in the begining of \lstset{literate=%
{\ }{{{\ProcessSpace}}}1% Count contigous spaces, but it seems (or may be the "bullet" part), that this is the cause of the first word splitting. When I add an \ in it, no bullet anymore, but the word were correctly put.
Any idea ? (Again, thanks for the answers)
Edit 2 :
Thanks to Peter Grill's code, problem solved.
Note : This system doesn't allow the use of macro inside the list.
What about "enumerate" now ?


itemize-like structure that is actually done inside atabular?itemize(or lists in general) is far less complex than tables, so they are much quicker to construct. And what is the "quid"? – Werner May 30 '12 at 23:07easylistpackage. While it does not support tabs as indentation markers out of the box, it possibly could be extended in that way. Maybe you could also live with marking the indentation by something like+,++and so on. – Daniel May 31 '12 at 07:10\itemat the front and then the caret. – Dylan Moreland Jun 01 '12 at 00:28